web.xml ファイルにこのようなものがあるとしましょう。
<filter name="foo">
<init-param>
<param-name>fooBarUrl</param-name>
<param-value>http://foo.bar.com</param-value>
</init-param>
</filter>
dev/test/production に対して (上記の param-value に対して) 異なる URL 値があるとします。アプリケーションが別のステージに移動するたびにこれを変更する必要をなくすために、pom でフィルターやプロファイルを使用できる方法はありますか? 開発用の IE はhttp://localfoo.com、テスト用の IE はhttp://testserver.comなどになります。