Spring Boot w/ JSP
Project Setup From the CLI or http://start.spring.io/, initialize a project with "web" capability. What ends up happening is addition of the dependency: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> Start with this directory…