applicationContext.xml
例:連線JDBC和管理事務
1,beans的宣告處新增相應的名稱空間的schema定義檔案的說明,這樣在配置檔案中就可以使用對應空間下的配置標籤了。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
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-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
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-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
2,將註解的類自動轉化Bean,同時完成Bean的注入 -->
<context:component-sc專案包名新增到上下文掃描路徑,以便包中類裡的Spring註解生效。
<!-- 掃描類包,把標註Springan base-package="com.baobaotao.dao" />
<context:component-scan base-package="com.baobaotao.service" />
3-1,定義一個使用DBCP實現的資料來源
<!-- 定義一個使用DBCP實現的資料來源 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close"
p:driverClassName="com.mysql.jdbc.Driver"
p:url="jdbc:mysql://localhost:3306/sampledb"
p:username="root"
p:password="root" />
3-2,定義JDBC模版bean
<!-- 定義jdbc模版Bean -->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"
p:dataSource-ref="dataSource" />
3-3,配置事務管理器,負責宣告式事務的管理,需引用dataSource Bean
<!-- 配置事務管理器 -->
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager"
p:dataSource-ref="dataSource" />
4,通過aop和tx名稱空間的語法,以AOP的方式為專案包下所有類的所有方法都新增事務增強,即它們都將工作在事務環境中。
<!-- 通過AOP配置提供事務增強,讓service包下所有bean的所有方法擁有事務 -->
<aop:config proxy-target-class="true">
<aop:pointcut id="serviceMethod"
expression="execution(*com.baobaotao.service..*(..))" />
</aop:config>
<tx:advice id="txAdvice" transaction-manager="transactionManager">
例:連線JDBC和管理事務
1,beans的宣告處新增相應的名稱空間的schema定義檔案的說明,這樣在配置檔案中就可以使用對應空間下的配置標籤了。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
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-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
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-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
2,將註解的類自動轉化Bean,同時完成Bean的注入 -->
<context:component-sc專案包名新增到上下文掃描路徑,以便包中類裡的Spring註解生效。
<!-- 掃描類包,把標註Springan base-package="com.baobaotao.dao" />
<context:component-scan base-package="com.baobaotao.service" />
3-1,定義一個使用DBCP實現的資料來源
<!-- 定義一個使用DBCP實現的資料來源 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close"
p:driverClassName="com.mysql.jdbc.Driver"
p:url="jdbc:mysql://localhost:3306/sampledb"
p:username="root"
p:password="root" />
3-2,定義JDBC模版bean
<!-- 定義jdbc模版Bean -->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"
p:dataSource-ref="dataSource" />
3-3,配置事務管理器,負責宣告式事務的管理,需引用dataSource Bean
<!-- 配置事務管理器 -->
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager"
p:dataSource-ref="dataSource" />
4,通過aop和tx名稱空間的語法,以AOP的方式為專案包下所有類的所有方法都新增事務增強,即它們都將工作在事務環境中。
<!-- 通過AOP配置提供事務增強,讓service包下所有bean的所有方法擁有事務 -->
<aop:config proxy-target-class="true">
<aop:pointcut id="serviceMethod"
expression="execution(*com.baobaotao.service..*(..))" />
</aop:config>
<tx:advice id="txAdvice" transaction-manager="transactionManager">
相關文章
- SSM框架ApplicationContext.xml檔案配置SSM框架APPContextXML
- applicationContext.xml最基本配置檔案APPContextXML
- spring applicationContext.xml 配置檔案 詳解SpringAPPContextXML
- applicationContext.xml 配置檔案的一些認識APPContextXML
- Spring | xx-servlet.xml 和 applicationContext.xml 的區別SpringServletXMLAPPContext
- Spring中的applicationContext.xml實現自動裝配SpringAPPContextXML
- Could not open ServletContext resource [/WEB-INF/applicationContext.xml]解決ServletContextWebAPPXML
- Spring原始碼解析-applicationContext.xml載入和bean的註冊Spring原始碼APPContextXMLBean
- 在web.xml中配置載入applicationContext.xml中總說找不到類?WebXMLAPPContext