applicationContext.xml配置

<?xml version="1.0" encoding="UTF-8"?>

<!--
  - Application context definition for JPetStore's business layer.
  - Contains bean references to the transaction manager and to the DAOs in
  - dataAccessContext-local/jta.xml (see web.xml's "contextConfigLocation").
  -->
<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-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
 <!--配置sessionFactory  -->
 <!--读取数据库配置文件  -->
 <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  <property name="configLocation">
   <value>classpath:hibernate.cfg.xml</value>
  </property>
 </bean>
 
 <!--配置事务  -->
 <!-- 指定参与事务的数据库 -->
 <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  <property name="sessionFactory" ref="sessionFactory"/>
 </bean>
 
 <!--配置事务传播特性  -->
 <tx:advice id="txAdvice" transaction-manager="transactionManager">
  <tx:attributes>
   <tx:method name="add*" propagation="REQUIRED"/>
   <tx:method name="delete*" propagation="REQUIRED"/>
   <tx:method name="modify*" propagation="REQUIRED"/>
   <tx:method name="*" read-only="true"/>
  </tx:attributes>
 </tx:advice>
 
 <!--配置参与事务的方法  --> 
 <aop:config>
  <aop:pointcut id="allMothod" expression="* com.bjsxt.*..(..)"/>
  <aop:advisor pointcut-ref="allMothod" advice-ref="txAdvice"/>
 </aop:config>
 
 <!--配置action.java 文件-->
<bean name="/login" class="com.bjsxt.test.actions.LoginAction" scope="prototype">
  <property name="userManger" ref="userManager"/>
 </bean>

<!---普通bean配置-->
<bean id="userManager" class="com.bjsxt.test.manager.UserManagerImpl"></bean>

</beans>