springboot訪問template下的html頁面的實現配置

一、template下文件不允許直接訪問

1、查資料得知:springboot項目默認是不允許直接訪問template下的文件的,是受保護的。

     所以想訪問template下的html頁面,我們可以配置視圖解析器。

2、如果想要用視圖去展示,應該要設置好視圖展示頁面,比如說用一個模板語言來接收返回的數據(thymeleaf或者freemarker等), 也可以用jsp接收,但是SpringBoot官方是不推薦用jsp的,而是建議使用thymeleaf作為模板語言,這裡我以thymeleaf為例。

二、配置步驟

 1、pom.xml添加依賴

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

2、application.yml中添加配置

spring:
 thymeleaf:
  prefix:
   classpath: /templates  # 訪問template下的html文件需要配置模板,映射
  cache: false # 開發時關閉緩存,不然沒法看到實時頁面

3、template下添加一個index.html文件

4、後臺action配置映射關系

這裡有兩種方法,經過嘗試都可以訪問 index.html 頁面

三、結果展示

1、訪問index1,返回到index.html頁面瞭

2、訪問index2,訪問到html頁面瞭

隻不過,我這裡沒有返回數據,所以列表沒有數據,但是返回到頁面瞭

到此這篇關於springboot訪問template下的html頁面的實現配置的文章就介紹到這瞭,更多相關springboot訪問template的html內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: