applicationContext.xml

来源:互联网 发布:app源码制作 编辑:程序博客网 时间:2024/05/21 10:56
 

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

 <!-- xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:p="http://www.springframework.org/schema/p"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">- -->
<beans 
 xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
 http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
 
 <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"></property> 
 </bean>
 <!-- 定义事物管理拦截器 -->
 <bean id="transactionInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor">
  <property name="transactionManager" ref="transactionManager"></property>
  <property name="transactionAttributes">
   <props>
    <prop key="get*">PROPAGATION_REQUIRED,readOnly</prop>
    <prop key="*">PROPAGATION_REQUIRED</prop>
   </props>
  </property>
 </bean>
 

 <!-- 定义代理自动管理事务-->
  <bean id="ProxyCreator" class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
  <!-- 指定需要Spring管理事务的Bean -->
  <property name="beanNames">
   <list>
    <value>originService</value>
   </list>
  </property>
  <!-- 调用事务管理拦截器 -->
  <property name="interceptorNames">
   <list>
    <value>transactionInterceptor</value>
   </list>
  </property>
 </bean>
 <bean id="pm" class="deng.shi.zupu.Utils.PageModel">
  <property name="sessionFactory" ref="sessionFactory"></property>
 </bean>
 <bean id="originDao" class="deng.shi.zupu.Dao.Impl.OriginDaoImpl">
    <property name="pm" ref="pm"/>
   </bean>
    <bean id="originService" class="deng.shi.zupu.Service.Impl.OriginServiceImpl">
    <property name="origin" ref="originDao"></property>
   </bean>
   
</beans>

原创粉丝点击