I\'m starting an embedded tomcat via spring-boot and want to serve a static index.html page as part of a running application.
spring-boot
index.html
But the follo
For me this worked, i am sure there is a better way ( like without .html ).
@RequestMapping("/") public String index() { return "index.html"; }