在第一篇http://www.javashuo.com/article/p-gwzjjije-ed.html中咱們搭建了一個簡單的springboot程序 ,並讓他運行起來。該篇主要介紹下springboot 和Thymeleaf集成(不具體介紹Thymeleaf語法--關於Thymeleaf語法將單獨進行介紹)html
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
spring-boot不少配置都有默認配置,好比默認頁面映射路徑爲
classpath:/templates/*.html
一樣靜態文件路徑爲
classpath:/static/java
在application.properties中能夠配置thymeleaf模板解析器屬性.就像使用springMVC的JSP解析器配置同樣web
#thymeleaf start spring.thymeleaf.mode=HTML5 spring.thymeleaf.encoding=UTF-8 spring.thymeleaf.content-type=text/html #開發時關閉緩存,否則無法看到實時頁面 spring.thymeleaf.cache=false #thymeleaf end
org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties
這個類,上面的配置實際上就是注入到該類中的屬性值.編寫一個conntroller提供測試數據(這裏牽涉到一點和spring mvc相關的內容,咱們後面再介紹,先忽略),代碼以下spring
package com.pxk.controller; import java.util.ArrayList; import java.util.List; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import com.pxk.entity.User; import com.pxk.service.UserService; @Controller @RequestMapping("/user") public class UserController { private Logger logger = Logger.getLogger(UserController.class); @Autowired private UserService userService; @RequestMapping("/userList") public String userList(Model model) { List<User> users=new ArrayList<User>(); for(int i=0;i<10;i++){ User user=new User(); user.setAge(i+20); user.setName("zhang"+i); } model.addAttribute("users", users); model.addAttribute("count", 10); return "userList"; } }
代碼解釋:提供一個userList方法返回的model中包含一個user數組和count,user是一個普通的實體類,裏面有id,age,name三個屬性。 方法是徹底spring MVC的內容(若是不熟的朋友請先熟悉下再看後續文章)apache
放到src/main/resources/templates目錄下,這是spring boot和Thymeleaf集成的默認配置路徑 數組
<!DOCTYPE HTML> <html xmlns:th="http://www.thymeleaf.org"> <head> <title>userList</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> </head> <body> <!--/*@thymesVar id="name" type="java.lang.String"*/--> <p th:text="'count:' + ${count} + '!'">3333</p> </body> </html>
訪問http://localhost:8080/user/userList,便可看到模板獲取到後臺數據後渲染到頁面。緩存
好了,這篇就先到這裏,敬請期待下一篇:springboot 入門教程-的運行原理,關鍵註解和配置。springboot