spring-boot-dependencies jar 不完整的問題
阿新 • • 發佈:2018-08-30
cloud spring star server enc sta exe oal artifact
集成 springboot 有兩種方式。
1 直接 父項目指向 springboot
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.3.RELEASE</version> </parent>
這種用起來很方便 ,默認打出的jar 也是完整的。
2 使用 spring-boot-dependencie
<!-- springcloud --> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.0.3.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
這種默認打出的jar包是不完整的。 不能直接運行。
加入下面的配置就可以了
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <mainClass>com.sbl.pay.subaccount.SubaccountServerRunner</mainClass> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
第二種麻煩一點,但是我們可以使用自己的父類。
spring-boot-dependencies jar 不完整的問題