使用 maven for spring 创建可执行文件
Posted
技术标签:
【中文标题】使用 maven for spring 创建可执行文件【英文标题】:Creating an executable using maven for spring 【发布时间】:2016-09-11 01:21:50 【问题描述】:我正在尝试制作一个 Spring 应用程序的可执行 jar。但是,每当我尝试使用 java -jar jar 文件运行它时,都会出现错误:
Unable to start embedded container; nested exception is org.springframework.context.ApplicationContextException: Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean.
我正在使用
mvn clean compile assembly:single
当我使用 Eclipse 运行服务器时,它运行良好。这是我的 pom 文件:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>aopricing</groupId>
<artifactId>aopricing</artifactId>
<version>0.0.1-SNAPSHOT</version>
<repositories>
<repository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</pluginRepository>
</pluginRepositories>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>1.3.5.RELEASE</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source />
<target />
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>server.Application</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
我知道这已经在其他线程上得到了回答,但它们都不适合我,我尝试从 eclipse 创建一个可执行的 jar 文件,但还有其他问题。
【问题讨论】:
你尝试过吗?像什么 ?告诉我们,以免我们重复。你读过this 吗?还有this? this 一呢?我不知道这些东西是什么,但我知道设置@EnableAutoConfiguration
为很多人解决了这个问题。我们不是谷歌搜索服务,请自行使用。
@UDKOX 已经尝试了所有这些
你试过了吗?哪个 ?将它们添加到帖子中。如果您不告诉我们您已经尝试过什么,我们将不会尝试提供帮助。 I tried creating an executable jar file from eclipse, but that had other issues.
什么问题?你有没有尝试修复它们?在询问之前花点时间。
你知道你正在使用 Spring Boot 吗?
@kryger 是的,从另一个答案来看,运行 mvn sprin-boot:run 运行了 Web 服务器。由于我的一些代码,我不得不将我的 java 版本从 1.8 更改为 1.7。我想把它打包成一个jar,这样它就可以在不同的服务器上运行而无需任何额外的包。
【参考方案1】:
我将首先从命令行运行命令以验证应用程序是否可以从命令行运行。
mvn spring-boot:run
通常,我通过运行来构建胖罐
mvn clean install
然后从 #WORKING_DIR#/target 文件夹中获取 .jar 文件。 希望这可以为您的调试提供一些启示。
【讨论】:
这没有提供问题的答案。一旦你有足够的reputation,你就可以comment on any post;相反,provide answers that don't require clarification from the asker。 - From Review 感谢 Ro Yo Mi 提供的信息。我最近在 *** 上发布了我的答案,因此对规则知之甚少。以上是关于使用 maven for spring 创建可执行文件的主要内容,如果未能解决你的问题,请参考以下文章
要创建一个可执行的jar,我们需要添加spring-boot-maven-plugin到我们的 pom.xml。为此,请在该dependencies部分正下方插入以下几行:
使用 `publishToMavenLocal` 构建可以发布到 maven 本地 repo 的可执行 jar - spring boot 项目