springbootデフォルトの静的経路例解析


この文章は主にspringbootのデフォルトの静的経路の実例解析を紹介しています。ここでは例示的なコードによって紹介された非常に詳細で、皆さんの学習や仕事に対して一定の参考学習価値を持っています。必要な友達は下記を参照してください。
コードは下記の通りです
クラスResource Properties.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フォルダです。

以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。