使用 Tomcat 访问 Java 类
我创建了一个java文件并编译了它。现在我有了目录 WEB-INF/classes 和 HelloWorld.java 和 HelloWorld.class
现在的问题是:如何通过 Tomcat 访问它?安装完成后,Tomcat 的示例就可以工作了。我不知道如何访问 webdir(我在 webapps 中创建的应用程序的名称)
我收到以下错误:
type Status report
message /webdir/
description 请求的资源 (/webdir) 不可用。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
任何程序都必须有一个入口点。对于普通 Java 应用程序,它是一个
public static void main(String[] args)
。对于 Java Web 应用程序,入口点通常是类 doGet /javax/servlet/http/HttpServlet.html" rel="nofollow">HttpServlet
。因此,您必须实现一个扩展此 HttpServlet 类的类。然后,您需要设置一个文件
webdit/WEB-INF/web.xml
在其中声明您的 Servlet,并使其通过给定的 URL 可见。检查 Tomcat 附带的示例,然后搜索“Servlet”、“web.xml”以获取更多详细信息。祝你好运。
Any program must have an entry point. In the case of normal Java apps, it is a
public static void main(String[] args)
. In the case of a Java web application, the entry points is typically the methoddoGet
of the the classHttpServlet
.So you must implement a class that extends this
HttpServlet
class. Then, you need to setup a filewebdit/WEB-INF/web.xml
where you will declare your Servlet, and make it visible through a given URL.Check the examples that come with Tomcat, then google "Servlet", "web.xml" for more details. Good luck.