springboot使用jsp页面的问题Path with "WEB-INF" or "META-INF": [WEB-INF/jsp/index.jsp]

浏览器报错:

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Sun Aug 11 11:23:33 CST 2019

There was an unexpected error (type=Not Found, status=404).

No message availabl

后台报错:

Path with "WEB-INF" or "META-INF": [WEB-INF/jsp/index.jsp]

这个是因为springboot不支持jsp页面了

我们需要添加jar包依赖

 
        
            org.apache.tomcat.embed
            tomcat-embed-jasper
            8.5.20
        
        
            javax.servlet
            jstl
        

注意,添加依赖完成后看一下是否导入成功,如果没有需要重新导入!!!

springboot项目,使用jsp作为前端页面。在application.properties配置了jsp所在位置


spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp

项目结构

springboot使用jsp页面的问题Path with

你可能感兴趣的:(springBoot)