SSM搭建时碰到的问题:Error creating bean with name 'sqlSessionFactory' defined in URL
- sqlSessionFactory无法创建
-
- mybatis配置文件(SqlMapConfig.xml)
- Spring配置文件(applicationContext.xml)
sqlSessionFactory无法创建
mybatis配置文件(SqlMapConfig.xml)
自己在SqlMapConfig.xml这个文件中写了以下代码:
// 映射xml
<mappers><mapper resource="com/zp/mall/mapper/ItemsDAOMapper.xml"/>
</mappers>
Spring配置文件(applicationContext.xml)
但是自己又在applicationContext.xml这个文件中写了以下代码(在sql映射文件路径处),这个重复映射了ItemsDAOMapper,导致Error creating bean with name ‘sqlSessionFactory’ defined in URL这个异常,删除其中一个,就行了。
// 映射xml
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"><!-- 配置mybatis文件路径 --><property name="configLocation" value="classpath:SqlMapConfig.xml"/><!-- 数据源 --><property name="dataSource" ref="datasource"/><!-- sql映射文件路径 --><property name="mapperLocations" value="classpath*:com/zp/mall/mapper/*Mapper.xml"/></bean>