There was an unexpected error (type=Not Found, status=404). No message available in Springboot
in my scenario, it was because I missed one of the dependencies.
I referred to this : https://stackoverflow.com/questions/36819277/issue-with-spring-there-was-an-unexpected-error-type-not-found-status-404
and got fixes it by adding the bellow code piece in pom.xml.
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
Comments
Post a Comment