2010-06-08から1日間の記事一覧

src/main/webappの一部のリソースをWARから除外したい

src/main/webapp/index.jspがテスト用の簡易メニューになっており、本番環境では別のメニューを使用するのでこれをWARから取り除きたい。 pom.xml <profiles> <profile> <id>development</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <war.excludes>""</war.excludes> </properties> </profile> <profile> <id>production</id> </profile></profiles>