我正在通过Eclipse在Maven Web项目中工作。在web.xml
中,我有一个上下文参数,其值应根据我在运行Maven时使用的配置文件进行更改。
<context-param>
<param-name>producao</param-name>
<param-value>${ambiente.producao}</param-value>
</context-param>
在项目的pom文件中,我有以下配置:
<project>
<profiles>
<profile>
<id>prod</id>
<properties>
<ambiente.producao>true</ambiente.producao>
</properties>
</profile>
<profile>
<id>desenv</id>
<properties>
<ambiente.producao>false</ambiente.producao>
</properties>
</profile>
</profiles>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/webapp/WEB-INF/</directory>
<filtering>true</filtering>
<includes>
<include>**/web.xml</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.5</version>
<configuration>
<webResources>
<resource>
<filtering>true</filtering>
<directory>src/main/webapp</directory>
<includes>
<include>**/web.xml</include>
</includes>
</resource>
</webResources>
<warSourceDirectory>src/main/webapp</warSourceDirectory>
<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
</configuration>
</plugin>
</plugins>
</build>
</project>
根据我在互联网上找到的参考文献,我使用resources
标签作为maven-war-plugin插件。但是,它没有按预期工作。在Eclipse中,我使用目标 clean install 和&#34; Profiles&#34;运行maven。 prod 或 desenv 。运行Maven后,我发现在web.xml
中,${ambiente.producao}
属性未被替换。
因此,我想知道我做错了什么。我应该只使用Filtering资源还是maven-war-plugin?
谢谢,
Rafael Afonso
答案 0 :(得分:16)
不要相信您在互联网上阅读的所有内容。您应该从资源列表中删除src / main / webapp / WEB-INF /,它只会将您的web.xml过滤到target/classes
您的maven-war-plugin
配置只需要:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.5</version>
<configuration>
<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
</configuration>
</plugin>
现在,无论您是在Maven CLI中构建还是在Eclipse中构建,都需要启用其中一个配置文件。在命令行中,您需要运行
mvn clean package -Pdesenv
在Eclipse中(假设您使用的是Luna Java EE发行版或更新版本),您可以按Ctrl+Alt+P
启用所需的配置文件。如果您启用desenv
,则会在target/m2e-wtp/web-resources/WEB-INF/
下看到已过滤的web.xml。这是将发布到您的应用服务器的文件。
如果您碰巧同时启用两个配置文件,则pom.xml中列出的最新配置文件优先。
就个人而言,我会删除生产配置文件并将生产属性放在pom.xml的默认属性部分中。这样,您始终可以使用实际值过滤web.xml,并且使用非生产设置意外构建和部署应用程序的可能性较小。
为了在Eclipse中自动启用desenv
配置文件,您可以添加以下激活规则:
<profile>
<id>desenv</id>
<!-- This profile is only activated when building in Eclipse with m2e -->
<activation>
<property>
<name>m2e.version</name>
</property>
</activation>
<properties>
<ambiente.producao>false</ambiente.producao>
</properties>
</profile>
有关m2e-wtp中动态资源过滤支持的更多信息,请访问:https://developer.jboss.org/en/tools/blog/2011/05/03/m2eclipse-wtp-0120-new-noteworthy