springboot 기본 정적 경로 인 스 턴 스 분석

이 글 은 주로 springboot 의 기본 정적 경로 인 스 턴 스 분석 을 소개 합 니 다.글 에서 예제 코드 를 통 해 매우 상세 하 게 소개 되 었 고 여러분 의 학습 이나 업무 에 대해 어느 정도 참고 학습 가 치 를 가지 기 때문에 필요 한 친 구 는 참고 할 수 있 습 니 다.
코드 는 다음 과 같다.
클래스 ResourceProperties.class

private static final String[] CLASSPATH_RESOURCE_LOCATIONS = new String[]{"classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/"};
private String[] staticLocations;

public ResourceProperties() {
 this.staticLocations = CLASSPATH_RESOURCE_LOCATIONS;
 this.addMappings = true;
 this.chain = new ResourceProperties.Chain();
 this.cache = new ResourceProperties.Cache();
}
구조 방법 에 따 르 면staticLocations은 기본 적 인CLASSPATH_RESOURCE_LOCATIONS,즉"classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/"과 같다.
classpath 는 다음 그림 과 같은 resource 폴 더 입 니 다.

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기