我使用spring-boot-maven-plugin
打包我的REST服务。我使用mvn clean install
或mvn clean package
构建了jar。在我反编译jar之后,我发现没有添加任何依赖项(我希望它是一个包含所有依赖项的胖jar)
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.5.9.RELEASE</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>repackage</goal>
<goal>build-info</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>true</executable>
<finalName>myapp</finalName>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
当我使用java -jar myapp.jar -Drun.jvmArguments="-Dspring.profiles.active=qal"
运行spring boot时,我收到许多类的ClassNotFoundException。很明显,工件没有像预期的那样构建。但是,如果我使用maven ./mvnw spring-boot:run -Drun.jvmArguments="-Dspring.profiles.active=qal"
启动spring boot应用程序,我猜它会找到目标文件夹中的所有依赖项,因此工作正常。如何修复构建问题,以便我可以使用java -jar命令启动应用程序。
编辑:它的多模块maven项目
答案 0 :(得分:5)
您似乎使用了错误的命令。 mvn clean package
是maven命令,你应该使用命令&#39; repackage&#39;,它用于
正如这里提到的那样https://docs.spring.io/spring-boot/docs/current/maven-plugin/repackage-mojo.html重新打包现有的JAR和WAR存档,以便执行它们 从命令行使用java -jar
或者可能是它的插件配置问题。刚检查过:它适用于spring-boot-maven-plugin-2.0.0.RELEASE
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
<configuration>
<classifier>exec</classifier>
</configuration>
</execution>
</executions>
</plugin>
答案 1 :(得分:-1)
使用这个
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>${start-class}</mainClass>
<executable>true</executable>
<fork>true</fork>
<!-- Enable the line below to have remote debugging of your application on port 5005
<jvmArguments>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005</jvmArguments>
-->
</configuration>
</plugin>