在web-app元素内添加以下配置: <error-page><error-code>404</error-code><location>/error.jsp</location></error-page> 1. 2. 3. 4. 以上配置将将404错误映射到我们之前创建的error.jsp页面。 完成 恭喜!你已经成功地使用Spring Boot实现了JSP页面的404错误处理。 在实际的项目中,你还可以根据需要自定义...
如果你的页面在WEB-INF下,是无法直接访问页面的,所以,为了测试,你可以先找一个简单的页面直接放到webapp目录下。 这样,在正常情况下,我们可以不通过控制层就能访问到页面。 404.jsp的访问路径为:jsp/404.jsp 如果到这一步,你能正常访问得到的话,就说明你之前页面的项目路径存在问题; 其实,不仅仅是jsp无法访问,h...
点击springboot的启动类,选择“Edit Configurations...”; 展开“Environment”,找到“Working directory”,点击右侧的文件夹目录; 由于我的springboot启动类在bill-web下,所以将其工作目录设置成它; insert-->Apply-->OK。 重启项目就能正常访问啦。 4.效果展示 现在,控制层请求可以正常转发到页面上啦。 单独访问...
在springboot的配置文件:application.yml或application.properties中关于视图解析器的配置问题: 当pom文件下的spring-boot-starter-paren版本高时使用:spring.mvc.view.prefix=/spring.mvc.view.suffix=.jsp当pom文件下的spring-boot-starter-paren版本低时使用:spring.view.prefix=/spring.view.suffix=.jsp 不符合,pass...
简介:实战:第十四章:Springboot集成jsp页面报404四种解决方案 Springboot集成jsp页面报404。最近搭建一个简单的Springboot+maven+jsp的项目时,出现访问jsp页面时一直出404,错误信息是: This application has no explicit mapping for /error, so you are seeing this as a fallback.Wed Apr 15 10:44:30 CST 202...
问题错误404 jsp找不到项目spring boot和jboss是指在使用Spring Boot和Jboss进行开发时,访问JSP页面时出现404错误,提示找不到项目。 首先,需要确保项目的配置正确。在Spring Boot中,可以通过application.properties或application.yml文件进行配置。需要确保以下配置项正确设置: ...
通过maven创建springboot项目启动出现404 application.properties配置 spring.mvc.view.prefix=/WEB-INF/jsp/spring.mvc.view.suffix=.jsp AI代码助手复制代码 项目结构 控制器方法 packagecom.example.demo.controller;importorg.springframework.stereotype.Controller;importorg.springframework.web.bind.annotation.RequestMappi...
Springboot集成jsp页面报404。最近搭建一个简单的Springboot+maven+jsp的项目时,出现访问jsp页面时一直出404,错误信息是: 代码语言:javascript 复制 This application has no explicit mappingfor/error,so you are seeingthisasa fallback.Wed Apr1510:44:30CST2020There was an unexpectederror(type=Not Found,status...
In my case I had everything correctly setup in spring boot. The jsps were in src/main/webapp/WEB-INF/jsp and index.html the welcome page in src/main/resources/static/index.html. Still howevere hard I tried the jsp pages were not getting rendered. I always got 404 return. But when I...