装配WAR时出错 - 需要webxml属性

时间:2017-11-25 23:24:02

标签: jhipster

我在运行./mvnw版本时使用jhipster应用程序点击以下内容:

Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode)

1 个答案:

答案 0 :(得分:2)

这个微服务的回归已在4.11.0中报告并修复:https://github.com/jhipster/generator-jhipster/pull/6742。今晚应该有新版本。

与此同时,您可以通过将failOnMissingWebXml设置为false来将其修复到您自己的pom.xml中:

               <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>${maven-war-plugin.version}</version>
                    <configuration>
                        <failOnMissingWebXml>false</failOnMissingWebXml>