通過maven創(chuàng)建springboot項目啟動出現(xiàn)404
-
application.properties
配置
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
- 項目結(jié)構(gòu)
- 控制器方法
package com.example.demo.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class IndexController {
@RequestMapping("/")
public String index() {
return "index";
}
}
- 啟動項目訪問
localhost:8080
枕赵,出現(xiàn)404
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Thu Feb 28 22:59:29 CST 2019
There was an unexpected error (type=Not Found, status=404).
No message available
解決方法
-
pom.xml
添加依賴
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
-
clean
并刷新maven
- 重啟并訪問
localhost:8080
打包為jar
運行仍然出現(xiàn)404
- 打包插件版本設(shè)置為
1.4.2.RELEASE
言询,并且配置好資源目錄
<build>
<resources>
<resource>
<directory>src/main/webapp</directory>
<!--這里必須是META-INF/resources-->
<targetPath>META-INF/resources</targetPath>
<includes>
<include>**/**</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.4.2.RELEASE</version>
</plugin>
</plugins>
</build>