According to the documentation the default locations Spring will look for an index.html file are /static, /public, or /resources. I have been trying to alter my dir structure so that it will look in /src/xyzapp. I tried altering the spring.mvc.static-path-pattern in the application.properties to look like this:
spring.mvc.static-path-pattern=classpath:/src/xyzapp/
It doesn't seem to see the page I want to load though when I run the app. The page loaded normally when I had it in /static. Is my syntax off?