1. 在pom.xml中加入以下代碼:
<!-- begin - precompiling jsps -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jspc-maven-plugin</artifactId>
<configuration>
<injectString><!-- [INSERT FRAGMENT HERE] --></injectString>
<inputWebXml>${basedir}/WebContent/WEB-INF/web.xml</inputWebXml>
<outputWebXml>${basedir}/target/jspweb.xml</outputWebXml>
<warSourceDirectory>${basedir}/WebContent</warSourceDirectory>
<verbose>true</verbose>
<filtering>true</filtering>
<directory>${basedir}/WebContent</directory>
<includes>
<include>**/*.jsp</include>
</includes>
</configuration>
<executions>
<execution>
<id>jspc</id>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webXml>${basedir}/WebContent/WEB-INF/web.xml</webXml>
</configuration>
</plugin>
<!-- end - precompiling jsps -->
---------------------------------------------------------------
說明點www.2cto.com1:<injectString><!-- [INSERT FRAGMENT HERE] --></injectString>
到web.xml文件中去尋找與上面的配置一致的字符串,作為插入“預編譯”的servlet的代碼(這些是自動生成的)。
說明點2:<inputWebXml>${basedir}/WebContent/WEB-INF/web.xml</inputWebXml>
<outputWebXml>${basedir}/target/jspweb.xml</outputWebXml>
inputWebXml 配置項目的web.xml路徑,outputWebXml配置插入預編譯代碼後的web.xml存放路徑。
說明點3:<warSourceDirectory>${basedir}/WebContent</warSourceDirectory>
配置對哪個路徑JSP文件進行預編譯
說明點4:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webXml>${basedir}/WebContent/WEB-INF/web.xml</webXml>
</configuration>
</plugin>
配置Maven 打war包
----------------------------------------------------------
2. 在web.xml文件中加入
<!-- [INSERT FRAGMENT HERE] -->
----------------------------------------------------------
說明:插入預編譯的代碼。(這是一些servlet的配置代碼,是自動生成的)