使用Aspect将响应标头添加到所有控制器

时间:2016-02-19 05:35:08

标签: spring spring-mvc aop spring-aop

我希望我的所有Spring MVC控制器都包含一些常见的响应头。

我可以使用以下(Kotlin)来做到这一点:

@ModelAttribute
open fun responseHeaders(response: HttpServletResponse)
{
    //identify the node that serviced the call
    response.setHeader("host-name", InetAddress.getLocalHost().hostName);
    //etc
}

。 。因为它适用于所有,我可以使用基类。但有没有建议使用Aspect的方法呢?

0 个答案:

没有答案