@RequestMapping("/test/index")
public String index(ModelMap map<----, @PathVariable(value = "language") String language,
@PathVariable(value = "test") String test, HttpServletRequest request, HttpServletResponse response,
HttpSession session) {
.......
}
public void updateView() {
map.put("key",value);
updateview();
}
我想在其他方法中访问和更新视图,但是如何使用ModelMap作为全局变量?如何在map.put()之后更新视图?
答案 0 :(得分:-1)
根据您当前的问题和给定的程序,我正在给出答案。
我希望这个答案会给你一个想法。