由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
EmergingNetworking版 - 使用MapperScannerConfigurer时出现的错误
相关主题
急啊!应聘一个职位,对方发了一堆题 (转载)请问一道面试题Iterator over nested collections
xiaoxiaoren, this one is for utwitter店面(攒点人品)
请问: 建 shared data storage drive access through VPN and mapped network drive?is Carpenter ant a big deal?
刚看了下shuffle算法。发现有个问题goose mother with 13 babies
一个nested class的问题晚上吃什么顶饱
macro里面能还用macro吗?汇报一下毛豆生长周期
操,出什么事了?超市餐巾纸都卖光了请教大家这是不是国内的油豆角种子啊
在美国店买的冷冻装的green beans是豌豆吗?超市的grean bean
相关话题的讨论汇总
话题: bean话题: mapper话题: property
进入EmergingNetworking版参与讨论
1 (共1页)
C********e
发帖数: 1
1
在mybatis和spring整合时:
在spring中创建mapper接口生成代理对象时,一个mapper需对应配置一个bean,将非常
繁琐。为了简化配置,可以使用MapperScannerConfigure,这样只需传入mapper所在包
路径,通过扫描包即可获取所有的mapper,并将扫描到的所有mapper接口自动生成代理
对象,并在spring中注入。
配置方法为:




一般数据源为单例时,不会报错,因为MapperScannerConfigurer中会自动配置加载为
单例模式的sqlSessionFactory,而当不是单例时,就需要去加入sqlSessionFactory的
属性了,好奇心驱使,即是是单例模式我也加入了sqlSessionFactory我开始用的是这
种:




然后很悲剧地报错了:
org.springframework.beans.factory.BeanCreationException: Error creating bean
with name 'org.mybatis.spring.mapper.MapperScannerConfigurer#0' defined in
class path resource [spring/applicationContext.xml]: Initialization of bean
failed; nested exception is org.springframework.beans.
ConversionNotSupportedException: Failed to convert property value of type '
java.lang.String' to required type 'org.apache.ibatis.session.
SqlSessionFactory' for property 'sqlSessionFactory'; nested exception is
java.lang.IllegalStateException: Cannot convert value of type [java.lang.
String] to required type [org.apache.ibatis.session.SqlSessionFactory] for
property 'sqlSessionFactory': no matching editors or conversion strategy
found
经过排查,并去各处用各种方法寻找答案,发现出现这种情况的原因是:
配置MapperScannerConfigurer所在的bean在加载配置的sqlSessionFactory之前加载,
即当扫描到并生成mapper的实例化对象时,sqlSession工厂尚未加载成功,因此出现错
误。
可以将它的name改为:sqlSessionFactoryBeanName即可解决问题。即:



1 (共1页)
进入EmergingNetworking版参与讨论
相关主题
原来美国也有国内的四季豆啊一个nested class的问题
哪里有卖新鲜runner beans 的?macro里面能还用macro吗?
请教各位大神豆苗的问题操,出什么事了?超市餐巾纸都卖光了
红豆在美国店买的冷冻装的green beans是豌豆吗?
急啊!应聘一个职位,对方发了一堆题 (转载)请问一道面试题Iterator over nested collections
xiaoxiaoren, this one is for utwitter店面(攒点人品)
请问: 建 shared data storage drive access through VPN and mapped network drive?is Carpenter ant a big deal?
刚看了下shuffle算法。发现有个问题goose mother with 13 babies
相关话题的讨论汇总
话题: bean话题: mapper话题: property