调用servlet时未找到404

发布于 2024-11-02 18:11:09 字数 1187 浏览 0 评论 0原文

我有一个简单的 servlet ,名为 com.test.HelloWorld.class

然后我创建这些文件夹树:

WEB-INF -->
            lib
            classes -->
                    com -->
                           test -->
                                HelloWorld.class
web.xml

其中 web.xml 是:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" 
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
           http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 
         version="3.0">
  <servlet>
    <servlet-name>helloworld</servlet-name>
    <servlet-class>
      com.test.HelloWorld
    </servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>helloworld</servlet-name>
    <url-pattern>/servlets</url-pattern>
  </servlet-mapping>
</web-app>

在我创建一个名为 servlets.war 的 .war 并将其放入 autodeploy 目录中之后GlassFish 服务器的。

在我指向 url: localhost:8080/servlets/helloworld 后,但出现 404 错误。

为什么?什么是磨损?

谢谢。

I have a simple servlet say com.test.HelloWorld.class

then I create these folders tree:

WEB-INF -->
            lib
            classes -->
                    com -->
                           test -->
                                HelloWorld.class
web.xml

where web.xml is:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" 
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
           http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 
         version="3.0">
  <servlet>
    <servlet-name>helloworld</servlet-name>
    <servlet-class>
      com.test.HelloWorld
    </servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>helloworld</servlet-name>
    <url-pattern>/servlets</url-pattern>
  </servlet-mapping>
</web-app>

after I create a .war called servlets.war and put it inside the autodeploy dir of the GlassFish server.

After I point the url: localhost:8080/servlets/helloworld but I have a 404 error.

Why? What's worng?

Thanks.

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

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

发布评论

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

评论(2

夜吻♂芭芘 2024-11-09 18:11:09

如您在 url 映射中指定的那样,点击 /yourApplicationContext/servlets

例如:
http://localhost:8080/myapp/servlets

Hit /yourApplicationContext/servlets as you specified that in url-mapping

for example :
http://localhost:8080/myapp/servlets

故事未完 2024-11-09 18:11:09

在 Netbeans 服务窗口中,您可以右键单击特定的 servlet,然后单击在浏览器中打开。它将运行 servlet。您可以在地址栏中找到该特定 URL。

In Netbeans services window you can right click the particular servlet and click Open in browser. It will run the servlet. You can find that particular URL in the address bar.

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