为什么我得到错误实例化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>
答案 0 :(得分:0)
我的图书馆出了问题。在我的日食中查看问题视图并修复了我的项目中的问题。从所有文件夹中删除我的jar,将它们导入webinf / lib文件夹并将它们添加到我的构建路径中。显然,代码没有任何问题。