SpringBoot+jsp项目启动出现404

通过maven创建springboot项目启动出现404

  • application.properties配置
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
  • 项目结构

SpringBoot+jsp项目启动出现404_第1张图片

  • 控制器方法
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,出现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添加依赖

	org.apache.tomcat.embed
	tomcat-embed-jasper


	javax.servlet
	jstl

  • clean并刷新maven

SpringBoot+jsp项目启动出现404_第2张图片

  • 重启并访问localhost:8080

SpringBoot+jsp项目启动出现404_第3张图片

打包为jar运行仍然出现404

  • 打包插件版本设置为1.4.2.RELEASE,并且配置好资源目录
<build>
	<resources>
		<resource>
			<directory>src/main/webappdirectory>
			
			<targetPath>META-INF/resourcestargetPath>
			<includes>
				<include>**/**include>
			includes>
			<filtering>falsefiltering>
		resource>
	resources>
	<plugins>
		<plugin>
			<groupId>org.springframework.bootgroupId>
			<artifactId>spring-boot-maven-pluginartifactId>
			<version>1.4.2.RELEASEversion>
		plugin>
	plugins>
build>

你可能感兴趣的:(web开发)