没有父pom.xml的spring-boot无法生成war打包
Posted
技术标签:
【中文标题】没有父pom.xml的spring-boot无法生成war打包【英文标题】:spring-boot without parent pom.xml cannot generate war packaging 【发布时间】:2014-05-31 14:29:58 【问题描述】:我使用了 spring-io 提供的示例 gs-convert-jar-to-war。它描述了如何在 spring boot 项目中生成 war 包。
spring-boot 文档允许使用自己的父 pom,因此省略了所有 spring-boot 项目的预定义父 pom。必须添加以下依赖项:
<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.0.1.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
我将此更改(并且仅此更改)应用于示例。之后不再可能引发战争。我收到以下错误消息:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1.1:war (default-war) on project gs-convert-jar-to-war: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode) -> [Help 1]
这里是修改后的 pom.xml 的完整列表:
<?xml version="1.0" encoding="UTF-8"?>
<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>org.springframework-sample</groupId>
<artifactId>gs-convert-jar-to-war</artifactId>
<version>0.1.0</version>
<packaging>war</packaging>
<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.0.1.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<start-class>hello.Application</start-class>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/libs-milestone</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/libs-milestone</url>
</pluginRepository>
</pluginRepositories>
</project>
有什么办法可以解决这个问题吗?
在我的项目中,我将使用我自己的父 pom,因为它定义了很多关于公司的东西。
【问题讨论】:
【参考方案1】:您删除了父级,因此丢失了它的 WAR 插件配置声明。这里是:
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
源代码见here。
注意对于 Spring Boot 2.0 父 pom 及更高版本(war 插件版本不同),或者如果您使用最新的 war 插件,则不需要这样做。
【讨论】:
感谢您的提示。我添加了缺少的插件,但随后它抱怨缺少 web.xml:Error assemble WAR: webxml 属性是必需的(或者如果在更新模式下执行,则预先存在 WEB-INF/web.xml)。如果我提供基于 spring-boot 的父级,它可以在没有自己的 web.xml 声明的情况下工作。 您一定忘记添加 failOnMissingWebXml=false (根据上面的答案)? 对不起,原因很愚蠢:我使用了包装“战争”和我用 maven-war-plugin 替换的 maven-jar-plugin。现在它正在工作。谢谢你的提示。以上是关于没有父pom.xml的spring-boot无法生成war打包的主要内容,如果未能解决你的问题,请参考以下文章
maven父项目pom.xml文件中的报依赖找不到(dependency not found)红线错误
带有 pom.xml 和 app.java 的简单 spring-boot 应用程序显示构建失败错误
是否可以不在父pom中指定pluginManagement?