调用servlet时未找到404
我有一个简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如您在 url 映射中指定的那样,点击
/yourApplicationContext/servlets
例如:
http://localhost:8080/myapp/servlets
Hit
/yourApplicationContext/servlets
as you specified that in url-mappingfor example :
http://localhost:8080/myapp/servlets
在 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.