我通常使用控制器在我的 jsp requestScopes 中添加对象。
例如,如果我需要在“localhost/products/viewall”中列出类别,我只需更改我的 ProductsController 添加类似
@RequestMapping("/products/viewall")
public void viewCategories(Model model) {
List<Category> categories = service.findAllCategories();
model.addAttribute("categories", categories);
}
因此,此方法将类别列表添加到我的 requestScope。
我需要做同样的事情,但是对于网站的所有页面(因为我需要的变量将用于网站的布局)。
如何使用 Spring 向所有页面 requestScopes 添加内容?