崛起于Springboot2.X+引入本地jar运行+打包运行(65)
《SpringBoot2.X心法总纲》
首先比较老的jar包,它没有maven地址,很气人啊。比如:http.jar包,所以接下来就要把它引入到项目中,轻松的以maven地址运行到项目中。
jar目录
maven配置
<groupId><artifactId><version>这三个值随你怎么写,然后下面两个写对就ok
<!--外部http.jar引入--><dependency>
<groupId>com.bcloud.msg</groupId>
<artifactId>http</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/http.jar</systemPath>
</dependency>
重新启动之后成功本地运行。
打jar包部署
在上一步的基础之上,我们加入以下即可。
<build><plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--使其引入外部jar的scope的system生效-->
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
成功运行1
以上是 崛起于Springboot2.X+引入本地jar运行+打包运行(65) 的全部内容, 来源链接: utcz.com/z/511857.html