91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot如何使用Thymeleaf模板引擎訪問靜態html

發布時間:2020-10-26 17:44:13 來源:億速云 閱讀:221 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關SpringBoot如何使用Thymeleaf模板引擎訪問靜態html,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

一:創建spring boot的web項目,過程略;

二:依賴如下:

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
 
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-thymeleaf</artifactId>
      <version>2.1.2.RELEASE</version>
    </dependency>
 
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <groupId>org.junit.vintage</groupId>
          <artifactId>junit-vintage-engine</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

三:配置文件:application.properties

#端口號
server.port=8099
# 配置
#thymeleaf
spring.thymeleaf.cache=false
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.check-template-location=true
spring.thymeleaf.suffix=.html
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.servlet.content-type=text/html
spring.thymeleaf.mode=HTML

四:項目的templates文件夾下新建頁面success.html,如下

SpringBoot如何使用Thymeleaf模板引擎訪問靜態html

五:controller

import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
 
/**
 * @author liuhongyang
 * @2020/10/20 14:35
 * 文件說明:
 */
@Controller
public class FirstTestController {
 
  @RequestMapping(value = "hello")
  public String hello(ModelMap modelMap) {
    modelMap.put("hei", "thymeleaf");
    return "success";
  }
}

六:訪問如下,完成

SpringBoot如何使用Thymeleaf模板引擎訪問靜態html

上述就是小編為大家分享的SpringBoot如何使用Thymeleaf模板引擎訪問靜態html了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巩留县| 祁连县| 宝鸡市| 平武县| 平凉市| 乌恰县| 甘洛县| 新丰县| 三门县| 汤原县| 镇康县| 将乐县| 府谷县| 卢湾区| 阳泉市| 新化县| 南华县| 西乌珠穆沁旗| 龙门县| 张家川| 涡阳县| 特克斯县| 盱眙县| 卫辉市| 湘西| 抚顺县| 和龙市| 临澧县| 澄城县| 汕头市| 蒙阴县| 吉林市| 洪洞县| 临潭县| 德安县| 汾西县| 靖西县| 桦川县| 平果县| 张家川| 怀安县|