gpt4 book ai didi

java - Ant 由于 "package javax.servlet does not exist"而失败

转载 作者:行者123 更新时间:2023-12-01 10:48:02 24 4
gpt4 key购买 nike

我正在尝试编译 AdminOps.java 文件,它是 adminOps 包的一部分

这是文件结构:

C:\Users\Hp\git\fls-web-Lucy\src\adminOps\AdminOps.java

根据Ant的输出,我认为Ant找不到javax.servlet

我尝试手动导入 javax.servlet-api-3.1.0.jar 文件,但仍然收到错误。我正在使用 build.xml 文件,以便我可以创建 WAR 文件并使用 XAMPP 将其部署在本地主机上。

谁能帮我找出问题所在吗?

Ant 脚本

<?xml version="1.0" encoding="UTF-8"?>
<project name="friendlease" default="main" basedir=".">
<property name="src.java" value="${basedir}/src/"/>
<property name="build.dir" value="${basedir}/build"/>
<property name="jar.dir" value="${build.dir}/jar"/>
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="lib.dir" value="${basedir}/lib"/>
<property name="tp.dir" value="${jar.dir}/thirdparty"/>
<property name="jar.name" value="${ant.project.name}.jar"/>
<property name="jar.file" value="${jar.dir}/${jar.name}"/>
<property name="war.file" value="${build.dir}/${ant.project.name}.war"/>

<target name="clean">
<delete dir="${build.dir}"/>
</target>

<target name="setup">
<mkdir dir="${build.dir}"/>
<mkdir dir="${jar.dir}"/>
<!--
<for list="${dependencies}" trim="true" param="dependency">
<sequential>
<echo message="___ Building dependency @{dependency} ___"/>
<ant antfile="@{dependency}/build.xml" inheritall="false"
target="jar"/>
<copy todir="${jar.dir}">
<fileset dir="@{dependency}/${jar.dir}"/>
</copy>
</sequential>
</for>
-->
<copy todir="${tp.dir}/">
<fileset dir="${lib.dir}"/>
</copy>
<path id="classpath">
<fileset dir="${jar.dir}" includes="**/*.jar"/>
</path>
</target>

<target name="compile" depends="setup">
<mkdir dir="${classes.dir}"/>
<javac srcdir="${src.java}" destdir="${classes.dir}"
classpathref="classpath" includeantruntime="false"
debug="${compile.debug}" debuglevel="lines,vars,source"/>
</target>

<target name="test-compile" depends="compile">
<mkdir dir="${test.classes.dir}"/>
<path id="test.compile.classpath">
<pathelement path="${classes.dir}"/>
<pathelement location="${test.testng.jar}"/>
<path refid="classpath"/>
</path>
<javac srcdir="${test.src.java}" destdir="${test.classes.dir}"
classpathref="test.compile.classpath" includeantruntime="false"/>
</target>

<target name="test-run" depends="test-compile">
<path id="test.run.classpath">
<pathelement path="${test.classes.dir}"/>
<path refid="test.compile.classpath"/>
</path>
<testng classpathref="test.run.classpath"
outputdir="${test.report.dir}" haltonfailure="true">
<classfileset dir="${test.classes.dir}" includes="**/*.class"/>
</testng>
</target>

<target name="jar" depends="compile">
<pathconvert property="runtime.classpath" refid="classpath">
<regexpmapper from=".+/jar/(.+)" to="\1"/>
</pathconvert>
<manifestclasspath property="manifest.classpath"
jarfile="${broken.on.purpose}">
<classpath>
<pathelement path="${runtime.classpath}"/>
</classpath>
</manifestclasspath>
<jar destfile="${jar.file}" basedir="${classes.dir}">
<manifest>
<attribute name="Build-Version" value="${build.version}"/>
<attribute name="Class-Path" value="${manifest.classpath}"/>
</manifest>
</jar>
</target>

<target name="war" depends="jar">
<war destfile="${war.file}"
webxml="${basedir}/WebContent/WEB-INF/web.xml">
<lib dir="${jar.dir}" includes="*.jar"/>
<lib dir="${tp.dir}" includes="*.jar">
<exclude name="servlet-api.jar"/>
<exclude name="javax.servlet-3.0.jar"/>
</lib>
<zipfileset dir="${basedir}/WebContent"
excludes="WEB-INF/web*.xml"
/>
</war>
</target>

<target name="main" depends="clean, war"/>
</project>

环境变量

ANT_HOME=C:\apache-ant-1.9.6
Path=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Skype\Phone\;%ANT_HOME%\bin;%JAVA_HOME%\bin

AdminOps.java

package adminOps;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class AdminOps extends HttpServlet {
//some code here...
}

Ant 输出

Buildfile: C:\Users\Hp\git\fls-web-Lucy\build.xml
clean:
[delete] Deleting directory C:\Users\Hp\git\fls-web-Lucy\build
setup:
[mkdir] Created dir: C:\Users\Hp\git\fls-web-Lucy\build
[mkdir] Created dir: C:\Users\Hp\git\fls-web-Lucy\build\jar
[copy] Copying 1 files to C:\Users\Hp\git\fls-web-Lucy\build\jar\thirdparty
compile:
[mkdir] Created dir: C:\Users\Hp\git\fls-web-Lucy\build\classes
[javac] Compiling 1 source files to C:\Users\Hp\git\fls-web-Lucy\build\classes
[javac] C:\Users\Hp\git\fls-web-Lucy\src\adminOps\AdminOps.java:7: error: package javax.servlet does not exist
[javac] import javax.servlet.ServletException;
[javac] ^
[javac] C:\Users\Hp\git\fls-web-Lucy\src\adminOps\AdminOps.java:8: error: package javax.servlet.annotation does not exist
[javac] import javax.servlet.annotation.WebServlet;
[javac] ^
^
[javac] location: class AdminOps
[javac] 2 errors

BUILD FAILED
C:\Users\Hp\git\fls-web-Lucy\build.xml:43: Compile failed; see the compiler error output for details.

由于 Tomcat 是 XAMPP 的一部分,所以我没有单独安装它。这会产生问题吗?

最佳答案

在您的 Ant 脚本中,代码片段...

<javac ... classpathref="classpath" ... />

...配置<javac>classpath 定义的路径中搜索库。在您的脚本中,classpath定义为...

<path id="classpath">
<fileset dir="${jar.dir}" includes="**/*.jar"/>
</path>

所以要么:

  • javax.servlet-api-3.1.0.jar 需要存在于 ${jar.dir} 下.
  • <path id="classpath">需要另一个 <fileset>指向 javax.servlet-api-3.1.0.jar。

关于java - Ant <javac> 由于 "package javax.servlet does not exist"而失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34061803/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com