Spring boot MVC: can't find JSP
Zio, Are you sure you've included this dependency on your pom ?
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
Without this, I'm getting your same error.
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>required</scope>
</dependency>
Added this to my project that is in Intellj and it works..