1. 程式人生 > >Springboot+thymeleaf+mybatis 報Error resolving template [index], template might not exist的異常

Springboot+thymeleaf+mybatis 報Error resolving template [index], template might not exist的異常

出現異常原因:

1、靜態資源沒有進行拷貝到jar中或者war中

2、@RequestMapping("***")不能加 "/"

解決:

專案是Maven專案,在POM檔案中新增靜態資源編譯,進行資原始檔拷貝


  <build>
      <plugins>
              <!-- 資原始檔拷貝外掛 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <configuration>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
          <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
      </plugins>
  </build>

另外:如果不是這個問題的話。可以看

https://blog.csdn.net/fengzyf/art