springboot集成jsp,There was an unexpected error (type=Not Found, status=404). No message available
There was an unexpected error (type=Not Found, status=404). No message
available
今天遇到一个很无语的bug,访问的时候就出现这个路径没找到文件,主要是springboot默认的是使用html后缀名的模板,而没有使用jsp,所以在添加依赖包和启动方式后要在配置文件加上这两句。
spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp
当加上suffix后缀的时候,就能根据路径找到文件,但是会出现这样的错误
There was an unexpected error (type=Not Found, status=404). / #
ǰ׺��j��jsp/user-list.jsp
然后把前缀prefix和后缀suffix一起添加之后就可以访问了。
但是最坑最坑的地方来了!!!
我昨天配置好的集成jsp方式,而且是能够正常访问的,然后我今天打开电脑访问程序居然不行了,我就一直在看,应该是路径的问题,然后看控制器的路径,看模板名,还看了配置文件,有这两句话啊,
spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp
找了很久很久,然后我不信邪,我先重新了后缀的一句,收到,不复制,然后重启项目范围,报错变成了上面乱码的报错,接着又改了前缀,重启访问,居然可以了,瞬间感觉最坑的事情莫过于此,找了一个多小时的bug,就因为springboot不能重新加载已经写好的配置文件??这很奇怪,不过总是搞定了,改天有空再去查原因。
上一篇: 浏览器请求spring-boot模块项目报:There was an unexpected error (type=Not Found, status=404).
下一篇: springboot+thymeleaf视图映射报错:There was an unexpected error (type=Not Found, status=404)
推荐阅读
-
idea:springboot整合jsp出现的错误:There was an unexpected error (type=Not Found, status=404). /WEB-INF/jsp。。
-
springboot中unexpected error (type=Not Found, status=404)/WEB-INF/upload.jsp和No message available解决方案
-
Whitelabel Error Page There was an unexpected error (type=Not Found, status=404). No message availab
-
springboot集成jsp,There was an unexpected error (type=Not Found, status=404). No message available
-
springboot+thymeleaf视图映射报错:There was an unexpected error (type=Not Found, status=404)
-
小白踩坑记:springboot运行一直报错:There was an unexpected error (type=Not Found, status=404).