spring mybatis 整合 可以省略mybatis配置文件嗎
3 回答

藍山帝景
TA貢獻1843條經驗 獲得超7個贊
mybatis提供了與spring整合的類:org.mybatis.spring.SqlSessionFactoryBean
在spring中配置如下
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" /><!--數據源-->
<property name="configLocation" value="classpath:mapper/configuration.xml" />
</bean>
configuration.xml 中配置
<typeAliases>
<package name="com.eastelsoft.farmplan.pojo"/><!--基類包路徑-->
</typeAliases>
<mappers>
<mapper resource="mapper/XX1.xml" />
<mapper resource="mapper/XX2.xml" />
<mappers>
添加回答
舉報
0/150
提交
取消