又碰到问题了...附spring事务的xml配置(转)

今天又碰到问题.搞的我一下午才解决..郁闷死...

主要还是细节问题..

<aop:config>
   <aop:pointcut id="allManagerMethod" expression="execution(* test.manager.*.*(..))"/>
   <aop:advisor pointcut-ref="allManagerMethod" advice-ref="txAdvice"/>
</aop:config>

该死的,我将上面的设置错了,把advisor pointcut-ref="allManagerMethod" 设置成了advisor pointcut="allManagerMethod"

结果他给我报错...

Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userManager' defined in file [D:/WEB-INF/spring_hibernate2/bin/applicationContext-beans.xml]: Cannot resolve reference to bean 'sessionFactory' while setting bean property 'sessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in file [D:/WEB-INF/spring_hibernate2/bin/applicationContext-common.xml]: Initialization of bean failed; nested exception is java.lang.IllegalArgumentException: Pointcut is not well-formed: expecting '(' at character position 0
allManagerMethod
^

我百度了一下午.把上面红色的字段用百度搜索..却发现没有与我完全相同的...一般都是切面的语句 expression="execution(* test.manager.*.*(..))"之中有错误..而我也疯了头一般,一直拿这一句做实验..后来打开王勇的源代码每一句对照着来看.却发现我 Pointcut-ref弄错了..我狂晕..看来细节还是比较重要的.一不小心,会造成很多麻烦,而且找原因都非常麻烦...

 

 

下面是完整的事务配置:

<!-- 配置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 bean="sessionFactory"/>
   </property>
</bean>
<!-- 配置事务的传播特性 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
   <tx:attributes>
    <tx:method name="add*" propagation="REQUIRED"/>
    <tx:method name="del*" propagation="REQUIRED"/>
    <tx:method name="modify*" propagation="REQUIRED"/>
    <tx:method name="*" read-only="true"/>
   </tx:attributes>
</tx:advice>
<!-- 哪些类的哪些方法参与事务 -->
<aop:config>
   <aop:pointcut id="allManagerMethod" expression="execution(* test.manager.*.*(..))"/>
   <aop:advisor pointcut-ref="allManagerMethod" advice-ref="txAdvice"/>
</aop:config>

 

 

 

附:

<aop:config>

<aop:advisor pointcut ="com.xyz.someapp.SystemArchitecture.businessService()" advice-ref="tx-advice"/>

</aop:config>

 

pointcut是定义advice的类路径;

pointcut-ref是引用已定义的 p ointcut。

 

其实两者区别不难理解,重要的是细心。

另外,工作空间的路径最好不要用中文,否则会出现一些乱码之类的错误。


原博客地址:http://hi.baidu.com/zz101b/blog/item/361a62d009e1fdd9562c8456.html

你可能感兴趣的:(又碰到问题了...附spring事务的xml配置(转))