使用ant将jsps预编译为Jetty8的类

时间:2012-07-31 08:01:13

标签: java jsp jetty

我们正在使用jspc ant任务将JSP文件预编译成类/(然后打包成战争)

现在我们正在切换到Jetty 8.根据文档,有一个maven插件可以执行this。我们有蚂蚁任务吗?

3 个答案:

答案 0 :(得分:4)

最好使用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。

https://github.com/jetty-project/jetty-example-jspc-ant

答案 1 :(得分:0)

答案 2 :(得分:0)

从你的第一句开始,你显然已经在使用一个ant任务来预编译jsp文件...所以使用jetty-8并不意味着你必须改变那个进程,你仍然只是预编译像往常一样,像你一样构建war文件,然后部署到jetty-8。您需要将jsp添加到start.ini中的OPTIONS以将jsp引擎添加到服务器类加载器中。