本文介紹了Springboot WildFly 10部署錯(cuò)誤jdk。找不到不支持的模塊的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
我有一個(gè)帶有Java 1.8的Springboot v2項(xiàng)目,當(dāng)我嘗試在WildFly 10上部署我的Sprringboot項(xiàng)目時(shí),不斷收到此錯(cuò)誤
19:12:25,295 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "HealthCheck.war")]) - failure description: {
"WFLYCTL0080: Failed services" => {"jboss.module.service."deployment.HealthCheck.war".main" => "org.jboss.msc.service.StartException in service jboss.module.service."deployment.HealthCheck.war".main: WFLYSRV0179: Failed to load module: deployment.HealthCheck.war:main
Caused by: org.jboss.modules.ModuleNotFoundException: jdk.unsupported:main"},
"WFLYCTL0412: Required services that are not installed:" => ["jboss.module.service."deployment.HealthCheck.war".main"],
"WFLYCTL0180: Services with missing/unavailable dependencies" => undefined
我已經(jīng)創(chuàng)建了一個(gè)joss-ployment-structure.xml并在其中添加了";jdk.unsupport";依賴項(xiàng),我還嘗試將該依賴項(xiàng)添加到MANIFEST.MF中,還嘗試在maven-war插件下添加缺少的";jdk.unsupport";依賴項(xiàng),但沒(méi)有成功。
推薦答案
這是由于Spring-core5.3.*
中引入的breaking change,導(dǎo)致上述問(wèn)題的Spring-core庫(kù)的變化是commit。如果您使用Spring boot版本2.4.*
,那么您肯定會(huì)面臨這個(gè)問(wèn)題,因?yàn)樗隽薙pring-core5.3.*
的傳遞依賴。務(wù)實(shí)的方法是在可能的情況下升級(jí)WildFly版本(最新版本是22.0.1.Final
,wildfly 10.1.0.Final
已于近5年前于2016年8月19日發(fā)布)或?qū)⒛腟pring Boot版本降級(jí)為'2.3.*.RELEASE'
。
解決方法
對(duì)于那些無(wú)法升級(jí)WildFly服務(wù)器但處于使用最新Spring版本(5.3.*
)的用戶,請(qǐng)遵循下面的解決方案。實(shí)際問(wèn)題是Spring-core 5.3.x包含MANIFEST.MF
文件條目Dependencies: jdk.unsupported
。如果我們從JAR的MANIFEST.MF文件中刪除特定條目,我們就可以使用Wildfly10.x版本本身中的Spring-core 5.3.x。
要修補(bǔ)5.3.x并將其拉入類路徑,需要執(zhí)行以下步驟:
-
作為JAR文件本身,歸檔使用
7-Zip
/winrar
或任何文件歸檔實(shí)用工具打開它。打開MANIFEST.MF
,刪除最后一行Dependencies: jdk.unsupported
并保存更改。將修補(bǔ)后的JAR文件放入您的項(xiàng)目文件夾,即
lib
在項(xiàng)目級(jí)別排除
Spring-core 5.3.x
,強(qiáng)制使用構(gòu)建工具從項(xiàng)目目錄中使用Spring-core 5.3.x
的補(bǔ)丁程序庫(kù),并將其添加到您的類路徑中。我已經(jīng)為gradle
用戶提供了代碼片段
dependencies {
//Adding the patched jar into the classpath from a project directory
compile files('lib/spring-core-5.3.3.jar')
}
configurations.all {
//Excluding the spring-core-5.3.3.jar at the project level
exclude group: 'org.springframework', module: 'spring-core'
}
這篇關(guān)于Springboot WildFly 10部署錯(cuò)誤jdk。找不到不支持的模塊的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,