저는 thymeleaf를 이용하고 html과 css환경에서 테스트를 했습니다.
../src/resources 디렉터리에 존재하는
application.yml 파일에 다음과 같은 코드를 추가해줍니다.
thymeleaf:
prefix=classpath: templates/
suffix: .html
check-template-location: true
cache: false
mvc:
static-path-pattern: "/static/**"
prefix는 파일의 시작위치
suffix는 파일의 확장자명
check-template-location은 파일의 존재 여부 확인
cache는 캐시를 저장할 것인지 여부를 의미합니다.
이때 css를 적용하기위해서는
mvc:
static-path-pattern
을 사용해서 정적 파일 경로를 설정해줍니다.