spring配置文件(全)

<?xml version="1.0" encoding="gbk"?>
<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/tx
   http://www.springframework.org/schema/tx/spring-tx-2.0.xsd
 http://www.springframework.org/schema/aop
   http://www.springframework.org/schema/aop/spring-aop-2.0.xsd ">
   <!-- 從hibernate.cfg.xml配置中獲取配置信息並且創建會話工廠 -->
   <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    <property name="configLocation" value="classpath:hibernate.cfg.xml"> 
    </property>
   </bean>
   <!-- 聲明事務 -->
   <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory"/>
   </bean>
   <!-- 事務 -->
   <tx:advice id="transactionAdvice" transaction-manager="transactionManager">
    <tx:attributes>
     <tx:method name="add*" propagation="REQUIRED"/>
    </tx:attributes>
    </tx:advice>
   <!-- 顧問 -->
   <aop:config>
    <aop:pointcut id="loginMethods" expression="execution(* com.login.service.*.*(..))"/>
    <aop:advisor advice-ref="transactionAdvice" pointcut-ref="loginMethods"/>
   </aop:config>
   <!-- dao類 -->
   <bean id="loginDao" class="com.login.dao.LoginDao">
    <property name="sessionFactory">
   <ref bean="sessionFactory" />
  </property>
   </bean>
   <!-- 服務 -->
   <bean id="loginService" class="com.login.service.LoginService">
    <property name="loginDao" ref="loginDao"></property>
   </bean>
   <!-- 註冊 -->
   <bean id="addLogin" class="com.login.struts.action.UserLogin">
    <property name="loginService" ref="loginService"></property>
   </bean> 
   <!-- 登陸 -->
   <bean id="login" class="com.login.struts.action.UserLogin">
    <property name="loginService" ref="loginService"></property>
 </bean>
</beans>

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