我的基于GWT的Web应用程序遵循GWT项目结构,就像
中描述的那样GWT Standard Directory and Package Layout
该项目在项目中几乎没有JSP,我想使用JSPC插件进行预编译和打包。
我已将maven插件添加为
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jspc-maven-plugin</artifactId>
<executions>
<execution>
<id>jspc</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<warSourceDirectory>${basedir}/war</warSourceDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1</version>
<configuration>
<webappDirectory>${gwt.output.directory}</webappDirectory>
....
<webXml>${basedir}/target/jspweb.xml</webXml>
<injectString><!-- [INSERT FRAGMENT HERE] --></injectString>
</configuration>
</plugin>
但在运行时,我收到以下错误
Failed to execute goal org.codehaus.mojo:jspc-maven-plugin:1.4.6:compile (jspc) on project fqng-webapp: JSPC Error: C:\MyWorkSpace\XXX\YYYY\src\main\webapp\WEB-INF\web.xml (The system cannot find the path specified) -> [Help 1]
似乎JSP Compiler正在寻找基于maven webapp结构的web.xml。有没有办法配置JSPC插件以使用GWT项目结构?