热门标签
更多>
搜索结果
查询Tags标签: ModelMap,共有 2条记录-
Springboot配置全局model(ModeMap)信息
有时候我们给所有页面都显示站点信息,可以直接全局配置ModelMap信息 然后页面就可以直接获取GlobalConfig.javaimport org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annota…
2022/6/3 23:23:06 人评论 次浏览 -
SpringMVC域对象共享数据
1、使用ServletAPI向request域对象共享数据 @RequestMapping("/testServletAPI") public String testServletAPI(HttpServletRequest request){ request.setAttribute("testScope", "hello,servletAPI"); return "success"; …
2022/2/12 23:45:09 人评论 次浏览