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

出現異常緣由:spring

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

二、@RequestMapping("***")不能加 "/"app

解決:maven

項目是Maven項目,在POM文件中添加靜態資源編譯,進行資源文件拷貝spring-boot


  <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>ui

另外:若是不是這個問題的話。能夠看.net

https://blog.csdn.net/fengzyf/article/details/83341479插件

相關文章
相關標籤/搜索