I am trying to develop a new Spring boot application using MVC as a first step to move my existing Spring MVC application to Spring boot.
However, I am facing an is
There is a dependency to include as Spring boot doesn't know how to translate JSP to Servlet. So,
Check the version of your tomcat-embed-core-.jar.
Go to that corresponding version release on https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-jasper
Copy the dependency, it will look like-
org.apache.tomcat
tomcat-jasper
9.0.37
here version needs to be updated as per your tomcat-embed-core jar version
Now you are good to go with your project.
thanKs.