精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-03-10
现在用acegi的ACL,却发现原来的AOP影响而不能使用。以下是我的AOP <!-- Transactional advice --> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <!-- methods starting with 'save', 'update' or 'remove' use the default transaction settings --> <tx:method name="save*"/> <tx:method name="delete*"/> <tx:method name="merge*"/> <tx:method name="remove*"/> <!-- other methods are set to read only --> <tx:method name="*" read-only="true"/> </tx:attributes> </tx:advice> <aop:config proxy-target-class="true"> <aop:advisor pointcut="execution(* cn.biaoming.service..*Service.*(..))" advice-ref="txAdvice"/> </aop:config> 而TransactionInterceptor是这么定义的: <bean id="articleService" class="org.springframework.aop.framework.ProxyFactoryBean"> <property name="proxyInterfaces" value="cn.biaoming.service.ArticleService"/> <property name="target"><ref local="articleServiceTager"/></property> <property name="interceptorNames"> <list> <idref local="articleServiceSecurity"/> </list> </property> </bean> <bean id="articleServiceSecurity" class="org.acegisecurity.intercept.method.aopalliance.MethodSecurityInterceptor"> <property name="authenticationManager"><ref bean="authenticationManager"/></property> <property name="accessDecisionManager"><ref local="businessAccessDecisionManager"/></property> <property name="afterInvocationManager"><ref local="afterInvocationManager"/></property> <property name="objectDefinitionSource"> <value> </value> </property> </bean> 现在只要把spring2.x 的AOP去掉,TransactionInterceptor就能正常工作,要不就报以下错误 WARN Cglib2AopProxy.doValidateClass(250) | Unable to proxy method [public final java.util.List $Proxy29.getLatestArticle(java.lang.String,int)] because it is final: All calls to this method via a proxy will be routed directly to the proxy. 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2008-03-10
问题在于使用ProxyFactoryBean时,它代理的类不能有final方法;如果纯粹地使用Spring的<aop:advice>、<aop:advisor>则不会有问题。所以你最好尝试一下修改articleServiceSecurity这个bean的声明方式,看看能否使用后者
|
|
返回顶楼 | |
发表时间:2008-03-11
现在是用了aop:advice>、<aop:advisor>之后把都给我的方法(运行时)加上了final方法。
楼上的意思是让我尝试articleServiceSecurity也用Spring的<aop:advice>、<aop:advisor>是吗?我也想过这个问题,但是我不知道用哪种方法替换。 |
|
返回顶楼 | |
发表时间:2008-03-11
试试:
引用 <aop:config>
<aop:aspect id="articleServiceSecurityAspect" ref="articleServiceSecurity"> <aop:before pointcut="execution(* cn.biaoming.service.ArticleService.*(..))" method="a_method_of_articleServiceSecurity"/> </aop:aspect> </aop:config> <bean id="articleServiceTager" class="cn.biaoming.service.ArticleServiceTager" /> 以上代码不保证没错~~~ |
|
返回顶楼 | |
发表时间:2008-03-11
我现在在公司,晚上回去试一下,不过有些疑问,这个的意思是在执行ArticleService的所有方法之前先执行articleServiceSecurityAspect,是这样吗?不过ArticleService需要HibernateSession,注入进来不?还是继续使用来注入呢?
<aop:config proxy-target-class="true"> <aop:advisor pointcut="execution(* cn.biaoming.service..*Service.*(..))" advice-ref="txAdvice"/> </aop:config> |
|
返回顶楼 | |
发表时间:2008-03-11
其实我只是给出了一种声明的方法,看看是否适合你的情况;声明的内容是否正确就不一定了,可能你得多尝试尝试。
就你在帖子里提到的内容来看,估计需要HibernateSession的地方还是要注入。只是估计,最终得以你试验后的结果为准...... |
|
返回顶楼 | |
发表时间:2008-03-11
我试了,在启动tomcat 报以下错误
java.lang.IllegalArgumentException: Unable to locate method [a_method_of_articleServiceSecurity] on bean [articleServiceSecurity] at org.springframework.aop.config.MethodLocatingFactoryBean.setBeanFactory(MethodLocatingFactoryBean.java:75) |
|
返回顶楼 | |
发表时间:2008-03-11
兄弟,a_method_of_articleServiceSecurity的意思就是“articleServiceSecurity的一个方法”,你得把它替换成实际的方法呀
|
|
返回顶楼 | |
发表时间:2008-03-12
a_method_of_articleServiceSecurity这个是articleService的方法,还是articleServiceSecurity的方法呢?如果是articleServiceSecurity,那和objectDefinitionSource定义的拦截方法有冲突吗?
|
|
返回顶楼 | |
发表时间:2008-03-13
没有有知道了吗?
|
|
返回顶楼 | |