中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

苍山县| 宁城县| 麻栗坡县| 岳阳县| 大埔县| 成都市| 景德镇市| 肇东市| 怀仁县| 浦北县| 红安县| 福安市| 彩票| 弥勒县| 普兰店市| 汝阳县| 德昌县| 文安县| 江源县| 新田县| 奉节县| 揭阳市| 南部县| 湟源县| 安宁市| 新邵县| 长子县| 合作市| 陆良县| 鄱阳县| 黑山县| 景洪市| 三明市| 阿鲁科尔沁旗| 西青区| 大埔区| 菏泽市| 收藏| 苍梧县| 迭部县| 陵水|