我们正在使用jspc ant任务将JSP文件预编译成类/(然后打包成war)
现在我们切换到 Jetty 8。根据文档,有一个 Maven 插件可以做到这一点。我们有蚂蚁任务来做同样的事情吗?
最好使用 jetty 发行版附带的 JSP 库。
这是一个示例,使用 jetty-distribution-8.1.5.v20120716
<?xml version="1.0" ?>
<project name="AntExample1" default="war">
<property name="jetty.home" value="${user.home}/code/intalio/distros/jetty-distribution-8.1.5.v20120716" />
<path id="compile.jspc">
<fileset dir="${jetty.home}">
<include name="lib/servlet-api-*.jar" />
<include name="lib/jsp/*.jar" />
</fileset>
</path>
<path id="compile.classpath">
<fileset dir="WebContent/WEB-INF/lib">
<include name="*.jar" />
</fileset>
<path refid="compile.jspc" />
</path>
<target name="jspc" depends="compile">
<taskdef classname="org.apache.jasper.JspC" name="jasper2" classpathref="compile.jspc" />
<jasper2 validateXml="false"
uriroot="WebContent"
addWebXmlMappings="true"
webXmlFragment="WebContent/WEB-INF/generated_web.xml"
compilerSourceVM="1.6"
compilerTargetVM="1.6"
outputDir="build/gen-src"
verbose="9" />
</target>
<target name="init">
<mkdir dir="build/classes" />
<mkdir dir="build/gen-src" />
<mkdir dir="dist" />
<copy todir="build/gen-src">
<fileset dir="src" includes="**/*.java" />
</copy>
</target>
<target name="compile" depends="init">
<javac destdir="build/classes" debug="true" srcdir="build/gen-src">
<classpath refid="compile.classpath" />
</javac>
</target>
<target name="war" depends="jspc">
<war destfile="dist/AntExample.war" webxml="WebContent/WEB-INF/web.xml">
<fileset dir="WebContent" />
<classes dir="build/classes" />
</war>
</target>
<target name="clean">
<delete dir="dist" />
<delete dir="build" />
</target>
</project>
更新:2013 年 4 月 8 日
将此构建的示例项目推送到 github。
从您的第一句话开始,您显然已经在使用 ant 任务来预编译 jsp 文件......所以使用 jetty-8 并不意味着您必须更改该过程,您仍然可以像您一样进行预编译一直,像以前一样构建你的战争文件,然后部署到jetty-8中。您需要将 jsp 添加到 start.ini 中的 OPTIONS 以使 jsp 引擎进入服务器类加载器。