国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開發(fā) > Java > 正文

深入Spring Boot實(shí)現(xiàn)對(duì)Fat Jar jsp的支持

2024-07-14 08:41:09
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

spring boot 對(duì)于jsp支持的限制

對(duì)于jsp的支持,Spring Boot官方只支持了war的打包方式,不支持fat jar。參考官方文檔: https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-developing-web-applications.html#boot-features-jsp-limitations

這里spring boot官方說(shuō)是tomcat的問(wèn)題,實(shí)際上是spring boot自己改變了打包格式引起的。

原來(lái)的結(jié)構(gòu)之下,tomcat是可以掃描到fat jar里的META-INF/resources目錄下面的資源的。在增加了BOOT-INF/classes之后,則tomcat掃描不到了。

那么怎么解決這個(gè)問(wèn)題呢?下面給出一種方案,來(lái)實(shí)現(xiàn)對(duì)spring boot fat jar/exploded directory的jsp的支持。

個(gè)性化配置tomcat,把BOOT-INF/classes 加入tomcat的ResourceSet

在tomcat里,所有掃描到的資源都會(huì)放到所謂的ResourceSet里。比如servlet 3規(guī)范里的應(yīng)用jar包的META-INF/resources就是一個(gè)ResourceSet

現(xiàn)在需要想辦法把spring boot打出來(lái)的fat jar的BOOT-INF/classes目錄加到ResourceSet里。

下面通過(guò)實(shí)現(xiàn)tomcat的 LifecycleListener接口,在Lifecycle.CONFIGURE_START_EVENT事件里,獲取到BOOT-INF/classes的URL,再把這個(gè)URL加入到WebResourceSet里。

/** * Add main class fat jar/exploded directory into tomcat ResourceSet. * * @author hengyunabc 2017-07-29 * */public class StaticResourceConfigurer implements LifecycleListener { private final Context context; StaticResourceConfigurer(Context context) {  this.context = context; } @Override public void lifecycleEvent(LifecycleEvent event) {  if (event.getType().equals(Lifecycle.CONFIGURE_START_EVENT)) {   URL location = this.getClass().getProtectionDomain().getCodeSource().getLocation();   if (ResourceUtils.isFileURL(location)) {    // when run as exploded directory    String rootFile = location.getFile();    if (rootFile.endsWith("/BOOT-INF/classes/")) {     rootFile = rootFile.substring(0, rootFile.length() - "/BOOT-INF/classes/".length() + 1);    }    if (!new File(rootFile, "META-INF" + File.separator + "resources").isDirectory()) {     return;    }    try {     location = new File(rootFile).toURI().toURL();    } catch (MalformedURLException e) {     throw new IllegalStateException("Can not add tomcat resources", e);    }   }   String locationStr = location.toString();   if (locationStr.endsWith("/BOOT-INF/classes!/")) {    // when run as fat jar    locationStr = locationStr.substring(0, locationStr.length() - "/BOOT-INF/classes!/".length() + 1);    try {     location = new URL(locationStr);    } catch (MalformedURLException e) {     throw new IllegalStateException("Can not add tomcat resources", e);    }   }   this.context.getResources().createWebResourceSet(ResourceSetType.RESOURCE_JAR, "/", location,     "/META-INF/resources");  } }}

為了讓spring boot embedded tomcat加載這個(gè) StaticResourceConfigurer,還需要一個(gè)EmbeddedServletContainerCustomizer的配置:

@Configuration@ConditionalOnProperty(name = "tomcat.staticResourceCustomizer.enabled", matchIfMissing = true)public class TomcatConfiguration { @Bean public EmbeddedServletContainerCustomizer staticResourceCustomizer() {  return new EmbeddedServletContainerCustomizer() {   @Override   public void customize(ConfigurableEmbeddedServletContainer container) {    if (container instanceof TomcatEmbeddedServletContainerFactory) {     ((TomcatEmbeddedServletContainerFactory) container)       .addContextCustomizers(new TomcatContextCustomizer() {        @Override        public void customize(Context context) {         context.addLifecycleListener(new StaticResourceConfigurer(context));        }       });    }   }  }; }}

 這樣子的話,spring boot就可以支持fat jar里的jsp資源了。

demo地址: https://github.com/hengyunabc/spring-boot-fat-jar-jsp-sample

總結(jié)

  1. spring boot改變了打包結(jié)構(gòu),導(dǎo)致tomcat沒有辦法掃描到fat jar里的/BOOT-INF/classes
  2. 通過(guò)一個(gè)StaticResourceConfigurer把fat jar里的/BOOT-INF/classes加到tomcat的ResourceSet來(lái)解決問(wèn)題

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持VeVb武林網(wǎng)。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到JAVA教程頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 芜湖县| 锡林浩特市| 东阳市| 微博| 山西省| 虞城县| 玉环县| 陆河县| 太原市| 七台河市| 布拖县| 浦县| 阿城市| 蕉岭县| 北海市| 阿尔山市| 进贤县| 新乡县| 洛宁县| 射阳县| 时尚| 吉安县| 楚雄市| 惠安县| 佛坪县| 萝北县| 石门县| 元氏县| 大石桥市| 东源县| 中江县| 来宾市| 泰兴市| 徐水县| 军事| 金昌市| 环江| 酒泉市| 尚义县| 马尔康县| 肇州县|