<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
<!--開(kāi)啟自動(dòng)掃描,將加注解的bean放入容器-->
<context:component-scan base-package="com.kaishengit"/>
<!--加載properties配置文件,選配-->
<context:property-placeholder location="classpath:config.properties"/>
<!--配置數(shù)據(jù)源-->
<bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${jdbc.driver}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
<!--事務(wù)管理器-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!--開(kāi)啟基于注解的事務(wù)管理-->
<tx:annotation-driven transaction-manager="transactionManager"/>
<!--mybatis SqlSessionFactory-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!--數(shù)據(jù)源-->
<property name="dataSource" ref="dataSource"/>
<!--別名的包所在的位置-->
<property name="typeAliasesPackage" value="com.kaishengit.entity"/>
<!--mapper文件所在的位置-->
<property name="mapperLocations" value="classpath:mapper/*.xml"/>
<!--其他配置-->
<property name="configuration">
<bean class="org.apache.ibatis.session.Configuration">
<property name="mapUnderscoreToCamelCase" value="true"/>
</bean>
</property>
</bean>
<!--掃描mybatis中的Mapper接口,并自動(dòng)放入spring容器-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.kaishengit.mapper"/>
</bean>
</beans>
Spring與MyBatis整合的applicationContext.xml配置文件
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
相關(guān)閱讀更多精彩內(nèi)容
- 上篇Spring Boot - 注解的方式整合MyBatis中,我們知道怎么利用注解的方式整合MyBatis,可以...
- 項(xiàng)目開(kāi)發(fā)中不可避免需要跟數(shù)據(jù)庫(kù)打交道,作者開(kāi)發(fā)的項(xiàng)目的中廣泛使用Mybatis作為ORM框架。本文主要講解在Spr...
- Spring MVC中,applicationContext.xml [ServletName]-servlet....
- 在spring中,構(gòu)建一個(gè)項(xiàng)目,最麻煩也最容易出錯(cuò)的莫過(guò)于各種xml文件的配置,即使是一個(gè)簡(jiǎn)單的demo也需要花費(fèi)...