Spring boot 정적 파일 위치 셋팅
2024. 8. 11. 22:58ㆍJava/Spring Boot
기본 위치
/resources/static
/resources/public
설정 변경
spring:
mvc:
static-path-pattern: /**
web:
resources:
static-locations: "classpath:/static/"
'Java > Spring Boot' 카테고리의 다른 글
Spring boot application.yml 변수 처리 (0) | 2024.08.14 |
---|---|
Spring boot static method에서 @Autowired field를 호출해야 하는 경우 (0) | 2024.08.13 |
Spring boot access log 설정 (0) | 2024.08.11 |
객체를 json으로 변환해서 보내기 (0) | 2024.08.03 |
because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled. (0) | 2024.07.18 |