Webinf/lib 文件夹丢失导致 servlet 出现错误 500 和 404

Webinf/lib folder missing caused error 500 and 404 in servlets

为什么我会收到 Error instantiating servlet class 错误?在我添加主页之前它工作正常。

我已经尝试清理项目和服务器并重建。不起作用。路径似乎没问题。想不通为什么。

网络浏览器错误

网页错误

当我返回并点击提交时,出现 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>

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