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
提交
取消