Spring控制器上的Aop注释不起作用

时间:2011-11-22 21:28:30

标签: java spring spring-mvc aop spring-aop

我已经为aop做了一个注释。当我在任何方法而不是控制器方法中使用它时,它运行良好。但是,当我在控制器的方法中使用它时,我的控制器停止工作。它开始为映射提供404未找到的错误。我在这里发现了一个类似的问题:Spring 3 MVC @Controller with AOP interceptors?但我不知道该怎么做。我的控制器的方法是:

@WebAuditable // This is my annotation that works at other methods
@Override
@RequestMapping(value = "/ad", method = RequestMethod.POST, headers = "Accept=application/json")
public
@ResponseBody
Cd create(HttpServletResponse response, @RequestBody Cd cd) {
    ...
}

我的控制器实现的界面是:

public interface BaseController<T> {

    public List<T> getAll(HttpServletResponse response);

    public T getByName(HttpServletResponse response, String id);

    public T create(HttpServletResponse response, T t);

    public T update(HttpServletResponse response, T t);

}

有任何建议吗?

PS: @SeanPatrickFloyd说:

  

注意当使用控制器接口时(例如,用于AOP代理),make   一定要始终如一地放置所有的映射注释 - 例如   @RequestMapping和@SessionAttributes - 在控制器界面上   而不是实现类

1 个答案:

答案 0 :(得分:4)

事情是:控制器映射在运行时完成,如果使用AOP代理,代理对象在运行时没有注释,只有它们的接口有。我可以想出两种可能的策略来解决这个限制。

注释通用接口方法,或者(如果您不想建议所有控制器)为每个实现类型创建一个子接口,显式地注释它们的方法。我知道这是很多重写的代码,与AOP的内容相反,但是当我坚持使用基于接口的代理时,我不知道更好的方法。

另一种方法是使用proxy-target-class =“true”切换到CGLib代理。那样代理类应该(我不确定)保留注释。

更新:注释您的界面应该像这样工作(如果它有效)

public interface BaseController<T> {

    @WebAuditable
    public List<T> getAll(HttpServletResponse response);

    @WebAuditable
    public T getByName(HttpServletResponse response, String id);

    @WebAuditable
    public T create(HttpServletResponse response, T t);

    @WebAuditable
    public T update(HttpServletResponse response, T t);

}

注释基类将不起作用,因为JDK代理不会公开任何未被接口支持的信息。