我希望我的所有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的方法呢?