mysterin / question_and_answer

1 stars 0 forks source link

web 项目无 web.xml 文件 maven 打包 #153

Closed mysterin closed 5 years ago

mysterin commented 5 years ago

在 pom.xml 加打包插件配置:

<packaging>war</packaging>
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.6</version>
            <configuration>
                <failOnMissingWebXml>false</failOnMissingWebXml>
            </configuration>
        </plugin>
    </plugins>
</build>

这样就不会报没有 web.xml 文件的错, 项目可以通过注解方式定义 Listener, Filter, Servlet 组件.