我在运行./mvnw
版本时使用jhipster应用程序点击以下内容:
Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode)
答案 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>