Spring——SSH (Spring+Struts+Hibernate)框架搭建之配置文件序列二

      Spring是三大框架SSH中的核心,通過Spring對相應的實例進行對象化,只需要在XML中對相應對象進行配置,就能完成Java對象的實例化和屬性的初始化,並能對屬性設置值。是整個系統的管理框架,有了Spring的管理,後臺代碼的編寫變得相當容易。

      繼上次寫過 Struts2——SSH (Spring+Struts+Hibernate)框架搭建之配置文件序列一後,這次再來介紹一下Spring的相關配置,Spring主要的配置文件爲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: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.1.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd" >
	
	<bean name="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
		<property name="configLocation">
			<value>classpath:hibernate.cfg.xml</value>
		</property>
	</bean>
	
	<!-- 配置事物管理器 -->
	<bean name="txManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
		<property name="sessionFactory" ref="sessionFactory"/>
		<property name="autodetectDataSource" value="false"/>
	</bean>
	
	<!-- 配置事物的傳播特性 -->
	<tx:advice id="txAdvice" transaction-manager="txManager">
		<tx:attributes>
			<tx:method name="get*" read-only="true"/>
			<tx:method name="*" propagation="REQUIRED"/>
		</tx:attributes>
	</tx:advice>
	
	<!-- 配置切入點 -->
	<aop:config>
		<aop:pointcut expression="execution(* net.cxiny.manager.*.*(..))" id="allMgrMethod"/>
		<aop:advisor advice-ref="txAdvice" pointcut-ref="allMgrMethod"/>
	</aop:config>

</beans>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章