springbooot2 thymeleaf 配置以及加載資源文件。Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)


最近在學習springbooot2 和 thymeleaf

程序文件

 

application.properties文件配置:

#thymeleaf
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.cache=false
spring.thymeleaf.servlet.content-type=text/html
spring.thymeleaf.enabled=true
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.mode=HTML
spring.thymeleaf.check-template-location=true
# 靜態文件請求匹配方式
spring.mvc.static-path-pattern=/**
# 修改默認的靜態尋址資源目錄
spring.resources.static-locations = classpath:/templates/,classpath:/resources/,classpath:/static/,classpath:/public/
#熱部署生效
spring.devtools.restart.enabled=true

 在編譯的時候,發現一直報這個錯誤:

 

 Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)

  之后再網上找了各種答案,發現都不能使用

-------------------------------------------------------------------------------------------------------------------

下面是正確的方案:

在pom.xml中引入如下配置

<build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
        <resources>
            <resource>
                <!--加載資源目錄-->
                <directory>src/main/resources</directory>
                <includes>
                    <!--加載配置文件-->
                    <include>**/*.xml</include>
                    <include>**/*.properties</include>
                    <!--加載模板文件-->
                    <include>**/*.html</include>
                    <!--加載靜態文件-->
                    <include>/static/</include>
                </includes>

            </resource>
        </resources>
    </build>

  在pom.xml中引入的文件,這樣application.properties文件中可注釋文件路徑配置。

server.port=9099
#thymeleaf
#spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.cache=false
spring.thymeleaf.servlet.content-type=text/html
spring.thymeleaf.enabled=true
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.mode=HTML
spring.thymeleaf.check-template-location=true
# 靜態文件請求匹配方式
#spring.mvc.static-path-pattern=/**
# 修改默認的靜態尋址資源目錄
#spring.resources.static-locations = classpath:/templates/,classpath:/resources/,classpath:/static/,classpath:/public/
#熱部署生效
spring.devtools.restart.enabled=true

  

LoginController中:

package com.java.seckill.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@RequestMapping("/login")
public class LoginController {
    @RequestMapping("/index")
    public String Index() {
        return "login";
    }


    @RequestMapping("/login")
    @ResponseBody
    public Boolean login(){
        return true;
    }
}

  

直接訪問:http://localhost:9099/login/index


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM