https://www.baeldung.com/spring-mvc-static-resources
스프링부트에서 static resource를 다루는 방법
Spring Boot는 정적 자원을 /static 컨텐트에서 처리한다.
/public /resources /META-INF/resources 도 가능
apllicatio.property에서 spring.web.resources.static-locations을 이용하여 경로를 바꿀 수 있다.

spring.web.resources.static-locations= classpath:/sbd , classpath:/static
해주게 된다면 login.html과 index.html, test.html 다 접근 가능하다.
src/main/resources 가 class path인가보다.