告诉maven,我真的不需要web.xml

Posted Peter Jones

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了告诉maven,我真的不需要web.xml相关的知识,希望对你有一定的参考价值。

<!-- 告诉maven,我真的不需要web.xml -->
<plugin>  
    <groupId>org.apache.maven.plugins</groupId>  
    <artifactId>maven-war-plugin</artifactId>  
    <version>2.6</version>  
    <configuration>  
        <failOnMissingWebXml>false</failOnMissingWebXml>  
    </configuration>  
</plugin> 

<properties>
        <!-- 文件拷贝时的编码 -->  
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>  
        <!-- 编译时的编码 -->  
        <maven.compiler.encoding>UTF-8</maven.compiler.encoding>  
        <!-- jdk编译版本 -->
        <java.version>1.7</java.version>
        <!-- 代表项目不需要web.xml -->
        <failOnMissingWebXml>false</failOnMissingWebXml>
  </properties>

 

以上是关于告诉maven,我真的不需要web.xml的主要内容,如果未能解决你的问题,请参考以下文章

对于基于 Servlet 的 Java Web 应用程序,我真的需要 web.xml 吗?

maven 之 web.xml 头设置错误问题

Maven 中的“需要 webxml 属性”错误

执行目标 org.apache.maven.plugins 失败:指定的 web.xml 文件 'D:\WEB-INF\web.xml' 不存在

maven 搭建spring框架报找不到applicationContext-*.xml文件

Choose unique values for the 'webAppRootKey' context-param in your web.xml files! 错误的解决(代码片段