spring aop仅适用于特定方法

时间:2012-02-06 13:04:22

标签: java spring-aop

我们需要在项目中实现spring aop。在弹簧配置中是否有任何方法我们只需要应用aop 一些具体方法? 例如:我需要通过spring aop将一些变量初始化为仅以'create'开头的方法。例如:createEmployee(员工雇员); 是否可以在春天不使用aspectJ的情况下实现? 清楚吗?还是我应该解释一下?我怎么做?我可以在配置中应用某种过滤器吗?

1 个答案:

答案 0 :(得分:1)

是的,这是可能的,这样

<tx:advice id="transactionAdvice" transaction-manager="hibernateTxManager">
        <tx:attributes>        
            <tx:method name="create*" read-only="false" propagation="REQUIRED" />            
        </tx:attributes>
    </tx:advice>