SpringBoot There was an unexpected error (type=Not Found, status=404). No message available找不到jsp页面

问题如下图:

SpringBoot There was an unexpected error (type=Not Found, status=404). No message available找不到jsp页面_第1张图片
在pom.xml文件中引入tomcat支持即可,如下:

   
            org.apache.tomcat.embed
            tomcat-embed-jasper
            provided
        
更新一下

今天添加了tomcat支持还是遇到了这个错误,怎么都找不出来,后来发现我的路径映射的名字和Mapper里面的一样,后来改了一下,解决了问题。所以以后命名规范一点可以避免很多的坑。具体看下图:
SpringBoot There was an unexpected error (type=Not Found, status=404). No message available找不到jsp页面_第2张图片
SpringBoot There was an unexpected error (type=Not Found, status=404). No message available找不到jsp页面_第3张图片

你可能感兴趣的:(SpringBoot)