<?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-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/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
">
<!-- 配置sessionFactory -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation">
<value>classpath:hibernate.cfg.xml</value>
</property>
</bean>
<!--- 上下玩環境的bean ->
<bean id="SpringContextUtil" class="com.hongdian.ibridge.util.SpringContextUtil" />
<!-- 配置交易管理員 -->
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean>
<!-- 配置事務的傳播特性 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<!-- 以save、del、up字母開的的方法設定事務 -->
<tx:method name="save*" propagation="REQUIRED" />
<tx:method name="del*" propagation="REQUIRED" />
<tx:method name="up*" propagation="REQUIRED" />
<tx:method name="merge*" propagation="REQUIRED" />
<!-- 添加日誌事務:下髮指令時添加日誌,方法名為get開頭 -->
<tx:method name="get" propagation="REQUIRED" />
<!-- 其他方法不開啟事務,提高效能 -->
<tx:method name="*" propagation="NOT_SUPPORTED" />
</tx:attributes>
</tx:advice>
<!-- 配置參與事務的方法 -->
<aop:config>
<aop:pointcut id="businessLogicServices" expression="execution(* com.hongdian.ibridge..*.*(..))" />
<aop:advisor pointcut-ref="businessLogicServices" advice-ref="txAdvice" />
</aop:config>
<!-- AOP -->
<aop:aspectj-autoproxy proxy-target-class="true"/>
<!--檔案上傳-->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="10000000"/>
</bean>
</beans>