做用域對象request,session, servletContext中的數據在Thymeleaf中的顯示都是相同的html
做用域對象中的 List和Set的集合在html中的顯示是相同的spring
做用域對象中的顯示字符串或基本類型是相同的springboot
方式一,使用註解@SessionAttributes肯定鍵,而後用ModerAndView對象添加對應的值後返回頁面session
方式二 處理方法中使用參數HttpSessionapp
ServletContext servletContext = request.getServletContext();spa
ServletContext servletContext = ContextLoader.getCurrentWebApplicationContext().getServletContext();code
@Autowired private ServletContext servletContext;htm
將要顯示的對象設置在標籤內部,就算標籤內部有內容也會被替換掉, 也可使用不存在的標籤替換對象
設置方式:${name}blog
設置爲標籤屬性的值,要在屬性前面加上"th:"
1 modelAndView.addObject("i", 100); 2 ----------------------------------------------------------------- 3 <span th:text="${i}"></span> 4 <div th:text="${i}"></div> 5 <h1 th:text="${i}"></h1> 6 <wgr style="color: red;" th:text="${i}"></wgr> 7 <span style="color: red;" th:text="${i}"></span> 8 <div style="color: red;" th:text="${i}"></div> 9 <h1 style="color: red;" th:text="${i}"></h1> 10 <wgr style="color: red;" th:text="${i}"></wgr> <br /> 11 <input type="text" th:value="${i}" /> 12 <input type="submit" th:value="${i}"/> 13 <input type="text" th:id="${i}" />
對象
1 modelAndView.addObject("stu", new Stu(1, "小明", 12)); 2 3 --------------------------------------------------------- 4 5 <span th:text="${stu.id}"> </span> 6 7 <span th:text="${stu.name}"> </span> 8 9 <span th:text="${stu.age}"> </span>
集合遍歷
1 List<String> strList = new ArrayList<>(); 2 strList.add("小明"); 3 strList.add("小華"); 4 strList.add("小陶"); 5 modelAndView.addObject("strList", strList); 6 --------------------------------------------------------- 7 <div th:each="str:${strList}"> //div能夠改成任意的容器標籤,甚至是不存在的標籤 8 <span style="color: red;" th:text="${str}"></span> <br /> 9 </div>
默認顯示request中數據,
顯示session中數據要加上 session前綴
顯示servletContext中數據要加上application前綴
1 //裝到request 2 request.setAttribute("requestAge", 100); 3 //裝到session 4 session.setAttribute("sessionName", "小明"); 5 //裝到ServletContext 6 servletContext.setAttribute("applicationNum", 1); 7 -------------------------------------------------------------------------------------- 8 request中: 9 <span style="color: red;" th:text="${requestAge}"></span><br /> 10 session中: 11 <span style="color: red;" th:text="${session.sessionName}"></span><br /> 12 servletContext中: 13 <span style="color: red;" th:text="${application.applicationNum}"></span><br />