dao层和xml怎么配置在不同包下
2020-03-21 本文已影响0人
3anLouYouGu1
2020年3月21日 尚未验证
在spring配置文件中的sqlsession配置如下:
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="configLocation" value="classpath:mybatis-config.xml"></property>
<property name="dataSource" ref="dataSource"></property>
<property name="mapperLocations" value="classpath:mapper/*.xml"></property>
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="annotationClass" value="org.springframework.stereotype.Repository" />
<property name="basePackage" value="com.lucas.dao"></property>
</bean>
————————————————
版权声明:本文为CSDN博主「lu__ya」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/lu__ya/article/details/79418432