SpringBoot+jsp项目启动出现404的解决方法
程序员文章站
2024-02-17 20:52:16
通过maven创建springboot项目启动出现404
application.properties配置
spring.mvc.view.prefix=/we...
通过maven创建springboot项目启动出现404
application.properties
配置
spring.mvc.view.prefix=/web-inf/jsp/ spring.mvc.view.suffix=.jsp
项目结构
控制器方法
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
添加依赖
<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
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
SpringBoot+jsp项目启动出现404的解决方法
-
Maven项目build时出现No compiler is provided in this environment的解决方法
-
vue项目启动出现cannot GET /服务错误的解决方法
-
Javaweb项目:网页搜索框输入中文关键字,出现乱码问题的解决方法
-
Win7系统开机启动蓝屏出现0x00000069错误代码的原因及解决方法
-
Android编程中activity启动时出现白屏、黑屏问题的解决方法
-
Android编程中activity启动时出现白屏、黑屏问题的解决方法
-
filezilla出现路径错误导致无法启动怎么办?filezilla无法启动的解决方法
-
mysql启动时出现ERROR 2003 (HY000)问题的解决方法
-
filezilla出现路径错误导致无法启动怎么办?filezilla无法启动的解决方法