未找到 Servlet 请求的资源

发布于 2024-10-29 19:27:18 字数 1348 浏览 0 评论 0原文

我有 index.jsp ,从中我获取 servlet LoginServlet.java 的参数 servlet 位于 dao 包下。

<form name="LoginForm" method="post" action="dao/LoginServlet">

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>Chat</display-name>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
    <description></description>
    <display-name>LoginServlet</display-name>
    <servlet-name>LoginServlet</servlet-name>
    <servlet-class>dao.LoginServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>LoginServlet</servlet-name>
    <url-pattern>Login</url-pattern>
  </servlet-mapping>
</web-app>

当我运行 JSP 页面时,我可以看到它,但收到一条错误消息

The requested resource (dao/LoginServlet) is not available

有人能指出问题是什么吗?

I have index.jsp from which I get the parameters to servlet LoginServlet.java
The servlet is under package dao.

<form name="LoginForm" method="post" action="dao/LoginServlet">

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>Chat</display-name>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
    <description></description>
    <display-name>LoginServlet</display-name>
    <servlet-name>LoginServlet</servlet-name>
    <servlet-class>dao.LoginServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>LoginServlet</servlet-name>
    <url-pattern>Login</url-pattern>
  </servlet-mapping>
</web-app>

When I run the JSP page I can see it but I get an error telling

The requested resource (dao/LoginServlet) is not available

Can anyone point out wat is the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽清梦 2024-11-05 19:27:18

表单操作应指向 web.xml 条目中指定的 servlet URL代码>.您已声明 servlet 监听 Login,但这实际上是无效的。它应该以斜线开头。

<url-pattern>/Login</url-pattern>

这样它就会监听 http://localhost:8080/yourcontextname/Login

然后您可以让表单操作指向该 URL(假设 JSP 文件没有放置在您的 web 应用程序上下文的子文件夹中)。

<form action="Login" method="post">

另请参阅:

The form action should point to the servlet URL as specified in <url-pattern> entry of its <servlet-mapping> in web.xml. You have declared the servlet to listen on Login, but this is actually invalid. It should start with a slash.

<url-pattern>/Login</url-pattern>

This way it listens on http://localhost:8080/yourcontextname/Login.

Then you can just let the form action point to that URL (assuming that the JSP file isn't placed in a subfolder of your webapp context).

<form action="Login" method="post">

See also:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文