2

我使用 JSF 2.2 + Spring 框架 3.2.4

所以,我有这个 applicationContent.xml

<beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
      xmlns:context="http://www.springframework.org/schema/context"
      xmlns:tx="http://www.springframework.org/schema/tx"
      xmlns:aop="http://www.springframework.org/schema/aop"
      xmlns:p="http://www.springframework.org/schema/p"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd 
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.2.xsd 
        http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx.xsd">

    <aop:aspectj-autoproxy proxy-target-class="true" />
    <tx:annotation-driven transaction-manager="transactionManager"/>
    <context:annotation-config/>
    <context:component-scan base-package="com.vulcan.controller" />
    <context:component-scan base-package="com.vulcan.service" />
    <context:component-scan base-package="com.vulcan.dao" />
    <context:component-scan base-package="com.vulcan.spring.aop" />

.....

然后我有方面组件

package com.vulcan.spring.aop;

@Aspect
public class LoggingService {
    private Log log = LogFactory.getLog(this.getClass());

    @Pointcut("execution(* *.*(..))")
    protected void loggingOperation() {}

    @Before("loggingOperation()")
    public void logJoinPoint()
    {
        System.out.println ("Hello");
     }
   ....

通过这种类型的执行,我假设每个方法都会触发这个切入点。但问题是,这个切入点没有被触发?知道为什么吗?谢谢

仅供参考,我使用 glassfish 4,当我部署我的网络应用程序时,我没有收到任何错误配置。所以我假设我的配置很好。

4

2 回答 2

15

@Aspect注释类不会被 Spring 自动检测到,因为它没有被检测到,所以<aop:aspectj-autoproxy />bean 不知道它。所以基本上没有方面。

添加@Component到您的@Aspect带注释的类中,以便 Spring 可以检测和使用方面。

@Compopnent
@Aspect
public class LoggingService { ... }

或在您的 xml 文件中明确声明方面

<bean class="LoggingService" />

无论哪种方式,<aop:aspectj-autoproxy />bean 都会获取切面并运行建议。

于 2013-08-27T14:46:20.020 回答
-3

尝试使用execution(* *(..)).

于 2013-08-16T08:41:31.967 回答