我正在使用基於配置文件的jsps上的資源過濾。我也在使用mvn jetty:run
進行本地開發,但過濾階段不運行。使用碼頭時運行資源過濾器:運行
如何使用jetty插件執行過濾?
配置片段:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<webResources>
<resource>
<directory>src/main/webapp</directory>
<includes>
<include>error.jsp</include>
</includes>
<filtering>true</filtering>
<targetPath>/</targetPath>
</resource>
</webResources>
</configuration>
</plugin>
<profile>
<id>jci</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>jci</name>
</property>
</activation>
<properties>
<error.title>Some value here</error.title>
</properties>
</profile>
@Robert:你有沒有發現,在平均時間任何解決這個問題?當我遇到你的時候,我傾向於發佈類似的問題... – Tim 2010-02-17 18:00:03
運行`jetty:deploy-war`讓我更進一步,但仍然沒有真正的工作解決方案..任何人都有這個問題的真實答案? – Tim 2010-02-17 19:07:32