I am developing a Spring MVC project with pure Java based configuration. I am getting the error below when I do a Maven clean install.
Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war) on project SpringMVC-ShoppingCart: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode) -> [Help 1]
The error says that web.xml
is missing, but I did not have one since I used pure Java based configuration.
How to make sure that the project builds and creates war file without web.xml
?
This error happens because the
maven-war-plugin
, in version 2.6 or lower, expects by default asrc/main/webapp/web.xml
file to be present in your WAR project, and it didn't find it.Use annotations and upgrade to 3.0.0 or newer
As of version 3.0.0 of the plugin, the presence of a
web.xml
is not mandatory by default anymore:This means that upgrading the plugin directly solves the issue. You can add the following configuration in your POM:
The reason is that since Servlet 3.0, the
web.xml
file is no longer needed in a web application, and can be replaced with annotations to have a Java-based configuration (MWAR-262). However, since your project might not use annotations to replace this file, in which case theweb.xml
could actually be missing, a sanity check was added in version 3.0.1 of the plugin to make sure that the annotation@WebServlet
is in the compile classpath of your WAR project (MWAR-396). If it isn't, and there is noweb.xml
file in your project, the plugin will still fail by default.Ignore the missing
web.xml
If you just want the plugin to explicitly ignore a missing
web.xml
file, regardless of the usage of annotations, you can set thefailOnMissingWebXml
parameter tofalse
. A sample configuration would be:This is because you have not included web.xml in your web project and trying to build war using maven. To resolve this error, you need to set the failOnMissingWebXml to false in pom.xml file.
For example:
Please see the blog for more details: https://ankurjain26.blogspot.in/2017/05/error-assembling-war-webxml-attribute.html