簡單配置applicationContext.xml


<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">


<!-- 基於 mapper 接口通過動態代理產生實現類 -->
<!-- <bean id="mapperScannerConfigurer" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
通過 value 值,掃描該包下的接口,從而產生實現類
<property name="basePackage" value="com.ssm.dao"></property>
該 bean 下會產生 dao 接口的實現類,並且該 bean 中會有 sqlSessionFactory 的依賴,配置之
<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
</bean> -->


<!-- 3、sqlSessionFactory bean -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- sqlsessionfactory 依賴注入 datasource -->
<property name="dataSource" ref="dataSource"></property>

<!--
管理 mybatis 的映射配置文件,該屬性可管理多個配置文件
name:表示該標簽是管理 mybatis 的映射配置文件
value:表示在類路徑下需要管理的 mybatis 的映射配置文件
-->
<property name="mapperLocations" value="classpath:com/ssm/bean/*.xml"></property>

<!--
在包的前提下為數據 bean 取別名
name:表示是基於包為數據 bean 取別名
value:表示為哪個包下取別名
-->
<property name="typeAliasesPackage" value="com.ssm.bean"></property>
</bean>

<!-- 引入數據源配置文件 -->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!-- 5、dataSource bean -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<!-- 配置 c3p0 連接池參數 -->
<property name="driverClass" value="${db.driver}"></property>
<property name="jdbcUrl" value="${db.url}"></property>
<property name="user" value="${db.username}"></property>
<property name="password" value="${db.password}"></property>
</bean>

<!-- 6、聲明式事務 bean -->
<bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>

<!--
6、aop 切面 bean 配置
expression:根據指定的表達式選擇要切入的位置
id:切面標簽的 id
<aop:aspect>:用於配置事務的前置操作和后置操作,但是在該情景下不適用
<aop:advisor>:通知需要執行的事務
advice-ref:引入事務通知
pointcut-ref:引入切入點
-->
<!-- <aop:config>
<aop:pointcut expression="execution(* com.yidu.foodfresh.dao.impl.*.*(..))" id="mypointcut"/>
<aop:advisor advice-ref="txadvice" pointcut-ref="mypointcut"/>
</aop:config> -->

<!-- 基於注解聲明式事務完成事務的切面 -->
<!-- <tx:annotation-driven transaction-manager="dataSourceTransactionManager"/> -->

<!-- 基於上下文掃描組件 -->
<context:component-scan base-package="com.ssm.*"></context:component-scan>

</beans>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM