3

apache.jasper.JasperException [jasperc] org.apache.jasper.JasperException: 認識されないオプション: -v9。-help を使用してヘルプを表示します。単純な build.xml の場合

<property name="message" value="Deploying the .jar file." />
<property name="src" location="source" />
<property name="output" location="bin" />

<target name="main" depends="init, compile">
    <echo>
        ${message}
    </echo>
</target>

<target name="init">
    <mkdir dir="${output}" />
</target>

<target name="compile">
    <jspc srcdir="${src}"
        destdir="${output}"
        package="org.antbook.jsp"
        verbose="9">
        <include name="**/*.jsp" />
    </jspc>
</target>

アリのライブラリに servlet-api-2.4.jar jasper-compiler.jar jasper-runtime.jar を入れました

何を追加するのかわからない

4

1 に答える 1