第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何將外部jar文件傳遞到spring boot項(xiàng)目?

如何將外部jar文件傳遞到spring boot項(xiàng)目?

holdtom 2023-08-23 16:49:06
我正在創(chuàng)建 Spring Boot Restful 應(yīng)用程序。此應(yīng)用程序使用外部 jar 文件。當(dāng)我為應(yīng)用程序創(chuàng)建 war 文件并部署在本地和服務(wù)器上時(shí),效果很好。但是,當(dāng)我創(chuàng)建此應(yīng)用程序的可執(zhí)行 jar 文件時(shí),它沒(méi)有使用外部 jar 文件。我有類未發(fā)現(xiàn)異常。我該如何解決這個(gè)問(wèn)題?任何人都建議我傳遞外部 jar 文件來(lái)執(zhí)行 jar 文件的方法。
查看完整描述

4 回答

?
守候你守候我

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超10個(gè)贊

也許這會(huì)有所幫助


    <dependency>

        <artifactId>com.google</artifactId>

        <groupId>Ab</groupId>

        <version>0.0.4.3</version>

        <scope>system</scope>

        <systemPath>${basedir}/lib/Ab.jar</systemPath>

    </dependency>

這樣你就可以添加任何 jar 文件作為 Maven 依賴項(xiàng)。


查看完整回答
反對(duì) 回復(fù) 2023-08-23
?
森欄

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超5個(gè)贊

使用以下命令安裝外部 jar


mvn install:install-file?

然后將其作為 Maven 依賴項(xiàng)提供


<dependency>

? ? ? ? <artifactId>your-custom-jar</artifactId>

? ? ? ? <groupId>group.id</groupId>

? ? ? ? <version>0.0.1</version>


</dependency>

spring 會(huì)將其打包到最終的可執(zhí)行 jar 中

查看完整回答
反對(duì) 回復(fù) 2023-08-23
?
波斯汪

TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超4個(gè)贊

您需要?jiǎng)?chuàng)建 Fat Jar / Uber Jar / Shadow Jar/?Shaded Jar(無(wú)論您喜歡哪個(gè)名稱),以便所有依賴項(xiàng)都包含在 jar 文件中。

搖籃

使用插件 DSL:


plugins {

? id "com.github.johnrengelman.shadow" version "5.1.0"

}

使用遺留插件應(yīng)用程序:


buildscript {

? repositories {

? ? maven {

? ? ? url "https://plugins.gradle.org/m2/"

? ? }

? }

? dependencies {

? ? classpath "com.github.jengelman.gradle.plugins:shadow:5.1.0"

? }

}


apply plugin: "com.github.johnrengelman.shadow"

梅文

<plugins>

? ? <plugin>

? ? ? ? <groupId>org.springframework.boot</groupId>

? ? ? ? <artifactId>spring-boot-maven-plugin</artifactId>

? ? ? ? <version>2.0.1.RELEASE</version>

? ? </plugin>

</plugins>


查看完整回答
反對(duì) 回復(fù) 2023-08-23
?
HUH函數(shù)

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超4個(gè)贊

我必須在 pom 文件中進(jìn)行更改。這將解決我的問(wèn)題。


<build>

<plugins>

<plugin>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-maven-plugin</artifactId>

<configuration>

<includeSystemScope>true</includeSystemScope>

</configuration>

</plugin>

</plugins>

</build>

我只需添加這一行,然后我的可執(zhí)行 jar 文件就可以正常工作。


<configuration>

    <includeSystemScope>true</includeSystemScope>

    </configuration>


查看完整回答
反對(duì) 回復(fù) 2023-08-23
  • 4 回答
  • 0 關(guān)注
  • 288 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)