狂神说day3:springboot web项目开发

参考文档:https://www.cnblogs.com/hellokuangshen/p/11310178.html

添加静态资源

1.webjars(不常用)

前端所用到的一些静态资源可以通过maven的方式添加到项目中,可以去webjars官方文档复制:https://www.webjars.org/。

官网复制maven配置添加到pom.xml中,等待资源下载完毕

狂神说day3:springboot web项目开发_第1张图片

路径信息

狂神说day3:springboot web项目开发_第2张图片

如何访问

WebMvcAutoConfiguration中有这样一段代码

		@Override
		public void addResourceHandlers(ResourceHandlerRegistry registry) {
			if (!this.resourceProperties.isAddMappings()) {
				logger.debug("Default resource handling disabled");
				return;
			}
			Duration cachePeriod = this.resourceProperties.getCache().getPeriod();
			CacheControl cacheControl = this.resourceProperties.getCache().getCachecontrol().toHttpCacheControl();
			if (!registry.hasMappingForPattern("/webjars/**")) {
				customizeResourceHandlerRegistration(registry.addResourceHandler("/webjars/**")
						.addResourceLocations("classpath:/META-INF/resources/webjars/")
						.setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl));
			}
			String staticPathPattern = this.mvcProperties.getStaticPathPattern();
			if (!registry.hasMappingForPattern(staticPathPattern)) {
				customizeResourceHandlerRegistration(registry.addResourceHandler(staticPathPattern)
						.addResourceLocations(getResourceLocations(this.resourceProperties.getStaticLocations()))
						.setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl));
			}
		}

其中:

if (!registry.hasMappingForPattern("/webjars/**")) {
				customizeResourceHandlerRegistration(registry.addResourceHandler("/webjars/**")
						.addResourceLocations("classpath:/META-INF/resources/webjars/")
						.setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl));
			}

这段代码说明我们可以通过webjars来访问classpath:/META-INF/resources/webjars/下的静态文件,而从上面的的结构图来看,我们童年过webjars方式获得的静态文件的路径都是以META-INF/resources/webjars/开始的。

在浏览器中输入访问地址成功访问到静态资源

狂神说day3:springboot web项目开发_第3张图片

2.直接访问资源目录(常用)

上面提到的WebMvcAutoConfiguration中获取资源的代码中,下一段是这样的

			if (!registry.hasMappingForPattern(staticPathPattern)) {
				customizeResourceHandlerRegistration(registry.addResourceHandler(staticPathPattern)
						.addResourceLocations(getResourceLocations(this.resourceProperties.getStaticLocations()))
						.setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl));
			}

我们去找staticPathPattern发现第二种映射规则 : /** , 访问当前的项目任意资源,它会去找 resourceProperties 这个类中

@ConfigurationProperties(
    prefix = "spring.resources",
    ignoreUnknownFields = false
)
public class ResourceProperties {
    private static final String[] CLASSPATH_RESOURCE_LOCATIONS = new String[]{"classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/"};
可得出结论,可以访问这几个路径下的静态资源,并且访问是存在优先级的。
"classpath:/META-INF/resources/", 
"classpath:/resources/",
"classpath:/static/", 
"classpath:/public/",
"/" :当前项目的根目录

你可能感兴趣的:(spring,boot)