maven多环境配置整合web.xml

今天使用maven多环境配置整合web.xml时,百度的资料没有直接能用的。搜索了官网文档,如今特意把写法记录下来:web

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <webResources>
                        <resource>
                            <directory>src/main/webapp</directory>
                            <filtering>true</filtering>
                        </resource>
                    </webResources>
                    <filters>
                        <filter>${project.basedir}/src/main/resources/profile/${profiles.active}.properties</filter>
                    </filters>
                </configuration>
            </plugin>
相关文章
相关标签/搜索