亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

铜陵市| 永仁县| 武安市| 七台河市| 云南省| 鲁山县| 嘉兴市| 武山县| 行唐县| 临湘市| 民和| 潜江市| 应用必备| 石首市| 琼海市| 米林县| 东乡族自治县| 莲花县| 林州市| 蒙城县| 平阳县| 哈尔滨市| 四平市| 和林格尔县| 繁峙县| 新巴尔虎左旗| 溧水县| 泗阳县| 泾川县| 昌都县| 内黄县| 淳安县| 布拖县| 弋阳县| 凤翔县| 南汇区| 楚雄市| 同江市| 夹江县| 格尔木市| 上高县|