Class 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 は、以下に示すリソース フォルダーです
以上がSpringbootでデフォルトの静的パスを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。