Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我们将注解@ModelAttribute 放在一个方法之前,它将在每个请求之前被调用(在@RequestMapping 之前)
每次请求后是否有类似的方法来调用方法?
这样做的方法是定义一个Spring 拦截器或更一般地使用 AOP。
@ModelAttribute 注释方法有不同的用途,它们的主要目的是设置公共模型属性,其副作用是需要在实际的 @RequestMapped 方法之前调用此类方法。