[Spring Boot]localhost로 테스트할 때 CSS 적용 오류 해결 방법

Gooder·2021년 5월 18일
0

Spring

목록 보기
1/1

저는 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 

을 사용해서 정적 파일 경로를 설정해줍니다.

profile
세상을 변화시킬 신스틸러 서비스를 만들고싶은 개발자 Gooder 입니다.

0개의 댓글