使用 Tomcat 访问 Java 类

发布于 2024-12-08 13:47:22 字数 292 浏览 0 评论 0 原文

我创建了一个java文件并编译了它。现在我有了目录 WEB-INF/classes 和 HelloWorld.java 和 HelloWorld.class

现在的问题是:如何通过 Tomcat 访问它?安装完成后,Tomcat 的示例就可以工作了。我不知道如何访问 webdir(我在 webapps 中创建的应用程序的名称)

我收到以下错误:

type Status report

message /webdir/

description 请求的资源 (/webdir) 不可用。

I created a java file and compiled it. Now I have the directory WEB-INF/classes with HelloWorld.java and HelloWorld.class

Now the question is: How do I access it via Tomcat? It is installed, the examples Tomcat coems with work. I don't know how to access the webdir(the name of the app I created in webapps)

I get the following error:

type Status report

message /webdir/

description The requested resource (/webdir) is not available.

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

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

发布评论

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

评论(1

烟凡古楼 2024-12-15 13:47:22

任何程序都必须有一个入口点。对于普通 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 method doGet of the the class HttpServlet.

So you must implement a class that extends this HttpServlet class. Then, you need to setup a file webdit/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.

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