靜態資源訪問css
在咱們開發Web應用的時候,須要引用大量的js、css、圖片等靜態資源。html
默認配置spring
Spring Boot默認提供靜態資源目錄位置需置於classpath下,目錄名需符合以下規則:json
/static /public /resources /META-INF/resources 舉例:咱們能夠在src/main/resources/目錄下建立static,在該位置放置一個圖片文件。啓動程序後,嘗試訪問http://localhost:8080/D.jpg。如能顯示圖片,配置成功。後端
渲染Web頁面瀏覽器
在以前的示例中,咱們都是經過@RestController來處理請求,因此返回的內容爲json對象。那麼若是須要渲染html頁面的時候,要如何實現呢?app
模板引擎spring-boot
在動態HTML實現上Spring Boot依然能夠完美勝任,而且提供了多種模板引擎的默認配置支持,因此在推薦的模板引擎下,咱們能夠很快的上手開發動態網站。網站
Spring Boot提供了默認配置的模板引擎主要有如下幾種:ui
Thymeleaf FreeMarker Velocity Groovy Mustache Spring Boot建議使用這些模板引擎,避免使用JSP,若必定要使用JSP將沒法實現Spring Boot的多種特性,具體可見後文:支持JSP的配置
當你使用上述模板引擎中的任何一個,它們默認的模板配置路徑爲:src/main/resources/templates。固然也能夠修改這個路徑,具體如何修改,可在後續各模板引擎的配置屬性中查詢並修改。
Thymeleaf
Thymeleaf是一個XML/XHTML/HTML5模板引擎,可用於Web與非Web環境中的應用開發。它是一個開源的Java庫,基於Apache License 2.0許可,由Daniel Fernández建立,該做者仍是Java加密庫Jasypt的做者。
Thymeleaf提供了一個用於整合Spring MVC的可選模塊,在應用開發中,你可使用Thymeleaf來徹底代替JSP或其餘模板引擎,如Velocity、FreeMarker等。Thymeleaf的主要目標在於提供一種可被瀏覽器正確顯示的、格式良好的模板建立方式,所以也能夠用做靜態建模。你可使用它建立通過驗證的XML與HTML模板。相對於編寫邏輯或代碼,開發者只需將標籤屬性添加到模板中便可。接下來,這些標籤屬性就會在DOM(文檔對象模型)上執行預先制定好的邏輯。
示例模板:
Name | Price |
---|---|
Oranges | 0.99 |
在Spring Boot中使用Thymeleaf,只須要引入下面依賴,並在默認的模板路徑src/main/resources/templates下編寫模板文件便可完成。
org.springframework.boot spring-boot-starter-thymeleaf 在完成配置以後,舉一個簡單的例子,在快速入門工程的基礎上,舉一個簡單的示例來經過Thymeleaf渲染一個頁面。@Controller public class HelloController {
@RequestMapping("/")
public String index(ModelMap map) {
// 加入一個屬性,用來在模板中讀取
map.addAttribute("host", "http://blog.didispace.com");
// return模板文件的名稱,對應src/main/resources/templates/index.html
return "index";
}
複製代碼
}
更多Thymeleaf的頁面語法,還請訪問Thymeleaf的官方文檔查詢使用。
Thymeleaf的默認參數配置
若有須要修改默認配置的時候,只需複製下面要修改的屬性到application.properties中,並修改爲須要的值,如修改模板文件的擴展名,修改默認的模板路徑等。
spring.thymeleaf.cache=true
spring.thymeleaf.check-template-location=true
spring.thymeleaf.content-type=text/html
spring.thymeleaf.enabled=true
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.excluded-view-names=
spring.thymeleaf.mode=HTML5
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html spring.thymeleaf.template-resolver-order= # Order of the template resolver in the chain. spring.thymeleaf.view-names= # Comma-separated list of view names that can be resolved. 支持JSP的配置
Spring Boot並不建議使用,但若是必定要使用,能夠參考此工程做爲腳手架:JSP支持
源碼來源:http://minglisoft.cn/honghu/technology.html