1. Общ преглед
Тази статия разглежда как да обслужваме статични ресурси с Spring - използвайки XML и Java конфигурация.
2. Използване на Spring Boot
Spring Boot се предлага с предварително конфигурирано изпълнение на ResourceHttpRequestHandler, за да улесни обслужването на статични ресурси.
По подразбиране този манипулатор обслужва статично съдържание от който и да е от директориите / static, / public, / resources и / META-INF / resources, които са в пътя на класа . Тъй като по подразбиране src / main / resources обикновено е в пътя на класа, можем да поставим там всяка от тези директории.
Например, ако поставим файл about.html в / static директорията в нашия път на класа, тогава можем да получим достъп до този файл чрез //localhost:8080/about.html . По същия начин можем да постигнем същия резултат, като добавим този файл в други споменати директории.
2.1. Персонализирани модели на пътя
По подразбиране Spring Boot обслужва цялото статично съдържание под основната част на заявката, т.е. / ** . Въпреки че изглежда, че е добра конфигурация по подразбиране, можем да я променим чрез свойството spring.mvc.static-path-pattern configuration.
Например, ако искаме да осъществим достъп до същия файл чрез //localhost:8080/content/about.html, можем да го кажем в нашата application.properties:
spring.mvc.static-path-pattern=/content/**
In WebFlux environments, we should use the spring.webflux.static-path-pattern property.
2.2. Custom Directories
Similar to path patterns, it's also possible to change the default resource locations via the spring.resources.static-locations configuration property. This property can accept multiple comma-separated resource locations:
spring.resources.static-locations=classpath:/files/,classpath:/static-files
Here, we're serving static contents from the /files and /static-files directories inside the classpath. Moreover, Spring Boot can serve static files from outside of the classpath:
spring.resources.static-locations=file:/opt/files
Here we're using the file resource signature, file:/, to serve files from our local disk.
3. XML Configuration
If you need to go the old fashion way with XML-based configuration, you can make good use of the mvc:resources element to point to the location of resources with a specific public URL pattern.
For example – the following line will serve all requests for resources coming in with a public URL pattern like “/resources/**” by searching in the “/resources/” directory under the root folder in our application.
Now, we can access a CSS file as in the following HTML page:
Example 3.1.
Home
4. The ResourceHttpRequestHandler
Spring 3.1. introduced the ResourceHandlerRegistry to configure ResourceHttpRequestHandlers for serving static resources from the classpath, the WAR, or the file system. We can configure the ResourceHandlerRegistry programmatically inside our web context configuration class.
4.1. Serving a Resource Stored in the WAR
To illustrate this, we'll use the same URL as before to point to myCss.css, but now the actual file will be located in the WAR's webapp/resources folder, which is where static resources should be placed when deploying Spring 3.1+ applications:
Example 4.1.1.
@Configuration @EnableWebMvc public class MvcConfig implements WebMvcConfigurer { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry .addResourceHandler("/resources/**") .addResourceLocations("/resources/"); } }
Let's analyze the example bit. First, we configure the external-facing URI path by adding defining a resource handler. Then, we map that external-facing URI path internally to the physical path where the resources are actually located.
We can, of course, define multiple resource handlers using this simple yet flexible API.
Now – the following line in an html page would get us the myCss.css resource inside the webapp/resources directory:
4.2. Serving a Resource Stored in the File System
Let's say we want to serve a resource stored in the /opt/files/ directory whenever a request comes in for the public URL matching the pattern: /files/**. We simply configure the URL pattern and map it to that particular location on disk:
Example 4.2.1.
@Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry .addResourceHandler("/files/**") .addResourceLocations("file:/opt/files/"); }
*(For Windows users: The argument passed to addResourceLocations for this example would be “file:///C:/opt/files/“).
Once we configure the resource location, we can use the mapped URL pattern in our home.html to load an image stored in the file system as follows:
Example 4.2.2.
Home ![]()
4.3. Configuring Multiple Locations for a Resource
What if we want to look for a resource in more than one location?
We can include multiple locations with the addResourceLocations method. The list of locations will be searched in order until the resource is found. Let's take a look at Example 3.3.1.
Example 4.3.1
@Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry .addResourceHandler("/resources/**") .addResourceLocations("/resources/","classpath:/other-resources/"); }
The following curl request will display the Hello.html page stored in either the application's webappp/resources or the other-resources folder in the classpath.
curl -i //localhost:8080/handling-spring-static-resources/resources/Hello.html
5. The New ResourceResolvers
Spring 4.1. provides – with the new ResourcesResolvers – different types of resource resolvers that can be used to optimize browser performance when loading static resources. These resolvers can be chained and cached in the browser to optimize request handling.
5.1. The PathResourceResolver
This is the simplest resolver and its purpose is to find a resource given a public URL pattern. In fact, if no ResourceResolver is added to the ResourceChainRegistration, this is the default resolver.
Let's see an example:
@Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry .addResourceHandler("/resources/**") .addResourceLocations("/resources/","/other-resources/") .setCachePeriod(3600) .resourceChain(true) .addResolver(new PathResourceResolver()); }
Things to notice:
- We are registering the PathResourceResolver in the resource chain as the sole ResourceResolver in it. See section 4.3. to check how to chain more than one ResourceResolver.
- The resources served will be cached in the browser for 3600 seconds.
- The chain is finally configured with the method resourceChain(true).
Now – the HTML code that, in conjunction with the PathResourceResolver, locates the foo.js script in either the webapp/resources of the webapp/other-resources folder:
5.2. The EncodedResourceResolver
This resolver attempts to find an encoded resource based on the Accept-Encoding request header value.
For example, we may need to optimize bandwidth by serving the compressed version of a static resource using gzip content coding.
To configure an EncodedResourceResolver, we just need to configure it in the ResourceChain just as we configured the PathResourceResolver, as in the following line of code:
registry .addResourceHandler("/other-files/**") .addResourceLocations("file:/Users/Me/") .setCachePeriod(3600) .resourceChain(true) .addResolver(new EncodedResourceResolver());
By default, the EncodedResourceResolver is configured to support br and gzip codings.
So, the following curl request will get the zipped version of the Home.html file located in the file system in the Users/Me/ directory:
curl -H "Accept-Encoding:gzip" //localhost:8080/handling-spring-static-resources/other-files/Hello.html
Notice how we are setting the header's “Accept-Encoding” value to gzip – this is important because this particular resolver will only kick in if the gzip content is valid for the response.
Finally, note that, same as before, the compressed version will remain available for the period of time it is cached in the browser – which in this case is 3600 seconds.
5.3. Chaining ResourceResolvers
To optimize resource lookup, ResourceResolvers can delegate the handling of resources to other resolvers. The only resolver that can't delegate to the chain is the PathResourceResolver which should be added at the end of the chain.
In fact, if the resourceChain is not set to true, then by default only a PathResourceResolver will be used to serve resources. In Example 4.3.1. we're chaining the PathResourceResolver to resolve the resource if the GzipResourceResolver is unsuccessful.
Example 5.3.1.
@Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry .addResourceHandler("/js/**") .addResourceLocations("/js/") .setCachePeriod(3600) .resourceChain(true) .addResolver(new GzipResourceResolver()) .addResolver(new PathResourceResolver()); }
Now that we have added the /js/** pattern to the ResourceHandler, let's include the foo.js resource located in the webapp/js/ directory in our home.html page as in Example 4.3.2.
Example 5.3.2.