程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ssh-一些關於SSH配置的問題

ssh-一些關於SSH配置的問題

編輯:編程綜合問答
一些關於SSH配置的問題

剛開始自學SSH,從網上找的demo裡的配置文件裡事務管理有幾段不了解的地方,
在網上找不到,求熱心人解釋一下,最好稍微解釋細點,標頭和屬性還有每一段的作用。。謝謝!

<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
    <property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<bean id="txManager"
    class="org.springframework.orm.hibernate3.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory" />
</bean>
<aop:config>
    <aop:pointcut id="bussinessService"
        expression="execution(public * com.huake.service.*.*(..))" />
    <aop:advisor pointcut-ref="bussinessService" advice-ref="txAdvice" />
</aop:config>

<tx:advice id="txAdvice" transaction-manager="txManager">
    <tx:attributes>
        <tx:method name="exists" read-only="true" />
        <tx:method name="add*" propagation="REQUIRED" />
    </tx:attributes>
</tx:advice>

最佳回答:


<!-- 配置hibernate模版,利用sessionFactory獲取session -->
<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
    <property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<!-- 配置hibernate事務管理器-->
<bean id="txManager"
    class="org.springframework.orm.hibernate3.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory" />
</bean>
 <!-- 配置切面 -->
<tx:advice id="txAdvice" transaction-manager="txManager">
    <tx:attributes>
        <tx:method name="exists" read-only="true" />
        <tx:method name="add*" propagation="REQUIRED" />
    </tx:attributes>
</tx:advice>
<!-- 配置切入點 -->
<aop:config>
    <aop:pointcut id="bussinessService" expression="execution(public * com.huake.service.*.*(..))" />
        <!-- 切入點用入通知中 -->
    <aop:advisor pointcut-ref="bussinessService" advice-ref="txAdvice" />
</aop:config>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved