使用spring boot如何實現(xiàn)處理靜態(tài)資源?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
從事成都托管服務器,服務器租用,云主機,虛擬空間,域名申請,CDN,網(wǎng)絡代維等服務。
spring boot 秉承約定優(yōu)于配置,spring boot在靜態(tài)資源的處理上就已經(jīng)默認做了處理。
1.默認資源映射
映射”/**”的路徑到 /static (或/public、/resources、/META-INF/resources), ”/webjars/** 映射到 classpath:/META-INF/resources/webjars/
注:若在freemarker獲取request對象,在spring boot 在application.properties可以這么配置
spring.freemarker.request-context-attribute=request
2.如何自定義靜態(tài)資源映射
spring boot有默認的資源映射,如果你覺得有需求需要,需要自己映射資源,可以在application.properties配置資源映射
#資源映射路徑為/content/** spring.mvc.static-path-pattern=/content/** #資源映射地址為classpath:/content/ spring.resources.static-locations=classpath:/content/
配置了之后,默認資源映射失效,若要讓默認的資源也有效的話,可以基于Java來配置
@Configuration public class MvcConfiguration extends WebMvcConfigurerAdapter { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/myres/**").addResourceLocations("classpath:/myres/"); super.addResourceHandlers(registry); } }
這里不要用@EnableWebMvc,如果用了@EnableWebMvc,那sping boot默認關于webmvc的配置都會失效,你需要自己去配置每一項
3.配置webjars
webjars能允許我們利用java打包的方式,把web的資源文件打包成jar文件,并利用maven進行版本控制http://www.webjars.org/,在pom.xml中jQuery依賴
org.webjars jquery 1.11.3
引入成功之后,自動把資源放到classpath://META-INFO/resources/webjars目錄下,我們可以通過/webjars/** 來訪問
4.webjars資源版本控制
既然引入maven進行版本控制,當有新版本的web資源的時候,當然不希望一個個的去客戶端修改資源版本號,我們利用WebJarAssetLocator來處理,首先在pom.xml引入依賴
org.webjars webjars-locator
然后定義一個controller進行攔截
@Controller public class WebJarsController { private final WebJarAssetLocator assetLocator = new WebJarAssetLocator(); @ResponseBody @RequestMapping("/webjarslocator/{webjar}/**") public ResponseEntity<?> locateWebjarAsset(@PathVariable String webjar, HttpServletRequest request) { try { String mvcPrefix = "/webjarslocator/" + webjar + "/"; // This prefix must match the mapping path! String mvcPath = (String) request.getAttribute(HandlerMapping.PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE); String fullPath = assetLocator.getFullPath(webjar, mvcPath.substring(mvcPrefix.length())); return new ResponseEntity<>(new ClassPathResource(fullPath), HttpStatus.OK); } catch (Exception e) { return new ResponseEntity<>(HttpStatus.NOT_FOUND); } } }
在頁面上,就這么調(diào)用,不需要寫具體版本號
5.使用ResourceUrlProvider對自定義的靜態(tài)資源進行管理
在使用第三方庫,我們可以是使用WebJarAssetLocator的方式進行版本管理,但是使用自己寫css和js,建議使用ResourceUrlProvider進行版本管理,并避免在版本發(fā)生改變時,由于瀏覽器緩存而產(chǎn)生資源版本未改變的錯誤
首先我們定義一個controller將路徑信息推到前端
@ControllerAdvice public class ResourceUrlProviderController { @Autowired private ResourceUrlProvider resourceUrlProvider; @ModelAttribute("urls") public ResourceUrlProvider urls() { return this.resourceUrlProvider; } }
前端頁面上,我們這么引入
而實際上,在生成的html頁面上,已加上md5的后綴
由于ResourceUrlProvider監(jiān)聽了ApplicationListener
所以在項目refresh的時候,在產(chǎn)生一個新的md5,這樣客戶端的資源路徑就發(fā)生改變,回去服務器重新獲取。
這就是spring boot的靜態(tài)資源處理
關于使用spring boot如何實現(xiàn)處理靜態(tài)資源問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關知識。