-1

为什么我会收到错误实例化 servlet 类错误?在我添加主页之前它工作正常。

我尝试过清理项目和服务器并重建。不工作。路径似乎还可以。想不通为什么。

网络浏览器上的错误

在此处输入图像描述

网页错误

在此处输入图像描述

当我返回并单击提交时,我收到 404 错误。

HTTP Status 404 -
type Status report
message
description The requested resource is not available.

我正在使用 Apache Tomcat/7.0.47 和 Eclipse IDE

我的文件夹结构:

在此处输入图像描述

我的 web.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <welcome-file-list>
        <welcome-file>Main.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
        <servlet-name>JuzzyServlet</servlet-name>
        <servlet-class>org.juzzy.client.Choice</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>JuzzyServlet</servlet-name>
        <url-pattern>/Choice</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>30</session-timeout>
    </session-config>
</web-app>
4

1 回答 1

0

我的图书馆有问题。转到我的 Eclipse 上的问题视图并修复了我的项目中的问题。从所有文件夹中删除了我的 jar,将它们导入 webinf/lib 文件夹并将它们添加到我的构建路径中。代码显然没有错。

于 2016-05-27T14:00:43.360 回答