20

我知道围绕控制器方法编写 AOP 建议的标准方法,并且如果在控制器方法中声明,您可以访问 HttpServletRequest arg。

但我的情况是我有一个翻译服务,它目前是会话范围的,维护用户的语言环境以进行翻译。我觉得这使服务有状态,而且我不希望它是会话范围的,因为我认为它真的是单例的。但是有多个地方调用了翻译服务方法,因此我不想更改签名以在这些方法中添加请求/语言环境。问题是翻译服务方法的所有调用者都无权访问 HttpServletRequest(不是控制器方法)?我可以围绕翻译服务方法编写一个方面,并以某种方式神奇地访问 HttpServletRequest,而不管它在调用者的上下文中是否可用?

@Service
public class TranslationService {
    public void translate(String key) {
        ...
    }
}

@Aspect
@Component
public class LocaleFinder {
    @PointCut("execution(* TranslationService.translate(..))")
    private void fetchLocale() {}

    @Around("fetchLocale()") // in parameter list
    public void advice(JoinPoint joinpoint, HttpServletRequest request) { .... } 
}

如果现在 translate 的调用者没有 HttpServletRequest,我不能在通知中获取请求吗?有解决方法吗?

4

2 回答 2

58

我可以围绕翻译服务方法编写一个方面,并以某种方式神奇地访问 HttpServletRequest,而不管它在调用者的上下文中是否可用?

不容易。实际上,这需要很多努力。

最简单的方法是依靠RequestContextHolder. 在每个请求中,将DispatcherServlet当前绑定HttpServletRequest到. 您可以在执行时检索它static ThreadLocalRequestContextHolderThread

HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.currentRequestAttributes()).getRequest();

您可以在advice()方法中执行此操作,因此不需要声明参数。

于 2013-10-11T21:10:21.127 回答
0

您应该能够在您的方面自动连接 HttpServletRequest。Spring 以这种方式为当前线程本地请求实例提供代理。

所以只需添加:

@Autowired private HttpServletRequest request;

到你的方面。更好的是使用构造函数注入。

于 2022-02-23T08:39:51.537 回答