SpringCloudSpringBootmybatis分散式微服務雲架構(八)開發Web應用(2)
在完成配置之後,舉一個簡單的例子,在快速入門工程的基礎上,舉一個簡單的示例來通過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";
}
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8" />
<title></title>
</head>
<body>
<h1 th:text="${host}">Hello World</h1>
</body>
</html>
如上頁面,直接開啟html頁面展現Hello World,但是啟動程式後,訪問http://localhost:8080/,則是展示Controller中host的值:http://blog.didispace.com,做到了不破壞HTML自身內容的資料邏輯分離。
更多Thymeleaf的頁面語法,還請訪問Thymeleaf的官方文件查詢使用。
Thymeleaf的預設引數配置
如有需要修改預設配置的時候,只需複製下面要修改的屬性到application.properties中,並修改成需要的值,如修改模板檔案的副檔名,修改預設的模板路徑等。
# Enable template caching.
spring.thymeleaf.cache=true
# Check that the templates location exists.
spring.thymeleaf.check-template-location=true
# Content-Type value.
spring.thymeleaf.content-type=text/html
# Enable MVC Thymeleaf view resolution.
spring.thymeleaf.enabled=true
# Template encoding.
spring.thymeleaf.encoding=UTF-8
# Comma-separated list of view names that should be excluded from resolution.
spring.thymeleaf.excluded-view-names=
# Template mode to be applied to templates. See also StandardTemplateModeHandlers.
spring.thymeleaf.mode=HTML5
# Prefix that gets prepended to view names when building a URL.
spring.thymeleaf.prefix=classpath:/templates/
# Suffix that gets appended to view names when building a URL.
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支援
相關文章
- SpringCloudSpringBootmybatis分散式微服務雲架構(七)開發Web應用(1)GCCloudSpring BootMyBatis分散式微服務架構Web
- Java開發微服務實現分散式架構應用總結Java微服務分散式架構
- 【分散式微服務企業快速架構】SpringCloud分散式、微服務、雲架構快速開發平臺分散式微服務架構SpringGCCloud
- SpringCloudSpringBootmybatis分散式微服務雲架構(十二)返回JSON格式GCCloudSpring BootMyBatis分散式微服務架構JSON
- Spring Cloud微服務分散式雲架構SpringCloud微服務分散式架構
- J2EE企業分散式微服務雲快速開發架構分散式微服務架構
- 構建Spring Cloud微服務分散式雲架構SpringCloud微服務分散式架構
- 分散式政企應用如何快速實現雲原生的微服務架構改造分散式微服務架構
- springcloud微服務分散式雲架構簡介SpringGCCloud微服務分散式架構
- 構建微服務分散式雲架構詳細步驟微服務分散式架構
- 微服務、分散式、雲架構構建電子商務平臺微服務分散式架構
- Spring Cloud微服務分散式雲架構簡介SpringCloud微服務分散式架構
- 微服務分散式雲架構-springboot執行模式微服務分散式架構Spring Boot模式
- spring cloud微服務分散式雲架構--hystrix的使用SpringCloud微服務分散式架構
- spring cloud微服務分散式雲架構-Gateway入門SpringCloud微服務分散式架構Gateway
- springcloud微服務分散式雲架構-SpringCloud簡介SpringGCCloud微服務分散式架構
- 微服務架構 | 11. 分散式事務微服務架構分散式
- spring cloud微服務分散式雲架構- Config 快速開始SpringCloud微服務分散式架構
- 技術分享 | 如何迅速將分散式政企應用轉型為雲原生微服務架構分散式微服務架構
- 微服務架構下分散式session管理微服務架構分散式Session
- 微服務分散式架構之redis篇微服務分散式架構Redis
- 架構解密:從分散式到微服務架構解密分散式微服務
- 11.Spring Cloud 分散式、微服務、雲架構企業快速開發架構之Linux 磁碟管理SpringCloud分散式微服務架構Linux
- 企業分散式微服務雲架構快速開發平臺原始碼分散式微服務架構原始碼
- Spring Cloud分散式微服務雲架構SpringCloud分散式微服務架構
- 分散式微服務雲架構構建電子商務分散式微服務架構
- spring cloud微服務分散式雲架構Spring Cloud ZuulSpringCloud微服務分散式架構Zuul
- spring cloud微服務分散式雲架構-Spring Cloud BusSpringCloud微服務分散式架構
- spring cloud微服務分散式雲架構-Commons 普通抽象SpringCloud微服務分散式架構抽象
- (十七)spring cloud微服務分散式雲架構-eureka 基礎SpringCloud微服務分散式架構
- (一)springcloud微服務分散式雲架構-SpringCloud簡介SpringGCCloud微服務分散式架構
- 整合Spring Cloud微服務分散式雲架構技術點SpringCloud微服務分散式架構
- Spring Cloud微服務分散式雲架構組成未來SpringCloud微服務分散式架構
- 微服務架構分散式事務管理問題微服務架構分散式
- Spring Cloud雲服務架構 - 企業分散式微服務雲架構構建SpringCloud架構分散式微服務
- spring cloud微服務分散式雲架構--服務註冊(consul)SpringCloud微服務分散式架構
- 構建Spring Cloud微服務分散式雲架構詳細步驟SpringCloud微服務分散式架構
- Spring Cloud分散式微服務雲架構構建SpringCloud分散式微服務架構