I\'m experimenting on re-writing my configuration-heavy, vanilla Spring MVC project using Spring Boot. I started a brand new Spring Boot project in IntelliJ using the Spring
application.propertiesRemove:
spring.mvc.view.prefix=/view/
spring.mvc.view.suffix=.jsp
Add:
spring.thymeleaf.prefix= /WEB-INF/views/
spring.thymeleaf.suffix= .html
pom.xmlRemove jasper dependency:
org.apache.tomcat.embed
tomcat-embed-jasper
provided
Add thymeleaf dependency:
org.springframework.boot
spring-boot-starter-thymeleaf
Details: Using thymeleaf instead of jsp