在这种模板开发框架里面是不提倡使用内置对象的,但是很多的开发者依然需要使用内置对象进行处理,所以下面来看下如何在页面中采用内置对象的方式完成.1. 在控制器里面追加一个方法, 这个方法将采用内置对象的形式传递属性.@RequestMapping(value = "https://www.it610.com/message/inner", method = RequestMethod.GET)
public String inner(HttpServletRequest request, Model model) {
model.addAttribute("url", "www.baidu.cn");
return "message/message_show_inner";
}其中model传递的本质就属于request属性范围.
2、编写页面进行内容的显示:message_show_inner.html SpringBoot模板渲染 - 锐客网
而后此时也可以使用"*{属性名称}"进行访问: 官方网站:www.baidu.cn用户名:springboot-request
3、修改程序现在传递三种属性范围:@RequestMapping(value = "https://www.it610.com/message/inner", method = RequestMethod.GET)
public String inner(HttpServletRequest request, Model model) {
request.setAttribute("requestMessage", "springboot-request");
request.getSession().setAttribute("sessionMessage", "springboot-session");
request.getServletContext().setAttribute("applicationMessage",
"springboot-application");
model.addAttribute("url", "www.baidu.cn");
request.setAttribute("url2",
"www.baidu.cn");
return "message/message_show_inner";
} SpringBoot模板渲染 - 锐客网
4、而后在页面之中如果想要访问不同属性范围中的内容,则可以采用如下的做法完成:thymeleaf 考虑到了实际的开发情况,因为 request 传递属性是最为常用的,但是 session 也有可能
使用,例如:用户登录之后需要显示用户 id,那么就一定要使用到 session,所以现在必须增加属性范围的
形式后才能够正常使用。在 thymeleaf 里面也支持有 JSP 内置对象的获取操作,不过一般很少这样使用。现在会将所有可能显示出的内容全部重新做了一个模板的重新的改写.
【SpringBoot 处理内置对象】
推荐阅读
- 第五节:SpringBoot常用注解介绍
- 第四节:SpringBoot中web模版数据渲染展示
- SpringBoot2022【草稿】
- 聊聊springboot项目全局异常处理那些事儿
- 第一节:创建SpringBoot项目并运行HelloWorld
- springboot管理系统[基于员工角色和文件权限的分级的后台管理系统源码]
- SpringBoot之@ComponentScan和@SpringBootApplication扫描覆盖问题
- mybatis|记mybatis查询null字段导致的NPE
- SpringBoot|SpringBoot 整合 druid数据源
- springboot项目配置application添加图片映射 (windows and linux 都可使用)