java – 我们可以禁用AOP调用吗?

我有基于AOP的登录功能,具有以下设置

上下文xml配置:

<bean id="performanceMonitor" 
class="org.springframework.aop.interceptor.PerformanceMonitorInterceptor" />

<aop:config>
        <aop:pointcut id="allServiceMethods" 
            expression="execution(* com.eshop.sfweb.service.impl..*(..))" /> 
    <aop:pointcut id="allEpServices" 
            expression="execution(* com.service.catalog..*(..))" />
        <aop:advisor pointcut-ref="allServiceMethods" 
            advice-ref="performanceMonitor" order="2" /> 
        <aop:advisor pointcut-ref="allEpServices"
            advice-ref="performanceMonitor" order="2" />
    </aop:config>

Log4j属性:

log4j.logger.org.springframework.aop.interceptor.PerformanceMonitorIntercept
or=${ep.perflog.level},PERFORMANCE 
log4j.appender.PERFORMANCE.File=webAppRoot:WEB-INF/log/performance.log 
log4j.appender.PERFORMANCE.threshold=DEBUG 
log4j.appender.PERFORMANCE=org.apache.log4j.DailyRollingFileAppender 
log4j.appender.PERFORMANCE.DatePattern='.'yyyy-MM-dd 
log4j.appender.PERFORMANCE.layout=org.apache.log4j.PatternLayout 
log4j.appender.PERFORMANCE.layout.ConversionPattern=%d -- %-5p [%t | %F:%L] 
-- %m%n

有什么办法可以根据环境禁用AOP调用吗?
我可以非常轻松地禁用日志记录,但是我可以禁用/启用整个后台进程和调用吗?

如果需要任何澄清,请告知.

解决方法:

由于您使用的是Spring AOP,因此启用或禁用方面的一种快速方法是简单地使用Bean配置文件.

定义一个配置文件,例如enableAOP:
将aop:config包装在特定配置文件下的配置文件中

<beans profile="enableAOP">
    <aop:config> <aop:pointcut id="allServiceMethods" 
    expression="execution(* com.eshop.sfweb.service.impl..*(..))" /> 
    <aop:pointcut id="allEpServices" expression="execution(* 
    com.service.catalog..*(..))" />
....
</beans>

现在,无论您希望启用特定方面的环境,只需运行enableAOP配置文件即可.

上一篇:java – 如何通过环绕构造函数替换类型的实例?


下一篇:java – Springs @Transactional仅适用于代理