web-dev-qa-db-ja.com

注釈付きコントローラーに関するSpringAOPアドバイス

注釈付きコントローラーの後にAOPを使用して処理を実行しようとしています。すべてがエラーなしで実行されていますが、アドバイスは実行されていません。

コントローラコードは次のとおりです。

@Controller
public class HomeController {       
    @RequestMapping("/home.fo")
    public String home(ModelMap model) {
        model = new ModelMap();
        return "home";
    }   
}

およびapplication-configでのセットアップ

<aop:aspectj-autoproxy/>

<bean id="testAdvice" class="com.test.TestAdvice">
</bean>

<bean id="testAdvisor"
    class="org.springframework.aop.aspectj.AspectJExpressionPointcutAdvisor">
    <property name="advice" ref="testAdvice" />
    <property name="expression" value="execution(* *.home(..))" />
</bean>

と実際のアドバイス

public class TestAdvice implements AfterReturningAdvice {

    protected final Log logger = LogFactory.getLog(getClass());

    public void afterReturning(Object returnValue, Method method, Object[] args,
            Object target) throws Throwable {
        logger.info("Called after returning advice!");
    }
}

注釈付きコントローラーについてアドバイスを受けることさえ可能ですか? Spring2.5を使用しています。

20
jdana

注釈付きコントローラーに関するアドバイスを得ることができます。

@Controllerアノテーションが付けられたクラスのすべてのメソッドの実行後にアドバイスが必要だと思います。

次に例を示します。

import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;

@Aspect
public class ControllerAspect {

    @Pointcut("within(@org.springframework.stereotype.Controller *)")
    public void controllerBean() {}

    @Pointcut("execution(* *(..))")
    public void methodPointcut() {}

    @AfterReturning("controllerBean() && methodPointcut() ")
    public void afterMethodInControllerClass() {
        System.out.println("after advice..");
    }
}

AspectJ構文でSpringAOPを使用する場合は、次のような構成ファイルも必要です。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="
            http://www.springframework.org/schema/aop 
            http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
            http://www.springframework.org/schema/beans 
            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

    <bean id="controllerAspect" class="controller.ControllerAspect" />

    <aop:aspectj-autoproxy>
        <aop:include name="controllerAspect" />
    </aop:aspectj-autoproxy>
</beans>

注:Spring AOPでは、SpringコンテナーはSpringBeanのみを織ります。 @ControllerオブジェクトがSpringBeanでない場合は、AspectJウィービングを使用する必要があります。

22
Espen

リポジトリへのアドバイスが機能しているのと同じ問題がありましたが、コントローラーへのアドバイスは機能しませんでした。ついに私は解決策を見つけました。つまり、AOP定義が別のコンテキストではなくサーブレットコンテキストにロードされていることを確認する必要があります。

私の場合、SpringAOPの定義はtools-config.xmlで定義されています。ここから移動した後

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring/tools-config.xml</param-value>
</context-param>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

ここまで、

<servlet>
    <servlet-name>petclinic</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:spring/mvc-core-config.xml, classpath:spring/tools-config.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

コントローラへのアドバイスは機能しています。

2
xli

MVCコントローラーの場合、実行しようとしていることを実行するための推奨される方法は、インターセプターを使用することです。 http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-handlermapping-interceptor を参照してください。

1
Sasi