帮助创建一个 Android 应用程序来访问 Tomcat 服务器?

发布于 2024-10-08 06:15:18 字数 189 浏览 5 评论 0原文

我有兴趣创建一个应用程序来在 Apache Tomcat 中执行管理任务。 我已经看到有很大一部分 ant 任务可以帮助完成大多数任务,但我不熟悉如何在代码中运行 ant 任务。

任何人都可以帮助我找到资源来了解如何使用这些任务,或者我可以通过其他方式访问 Tomcat 管理控制台。

如果可能的话,我更愿意访问 REST Api。

I am interested in creating an application to perform management tasks in Apache Tomcat.
I have seen there are a large section of ant Tasks that can help with most of these tasks, but I am not familiar with how to run ant tasks in my code.

Can anyone help me find a resource to understand how to use these tasks, or another way I can get access to the Tomcat Management console.?

I would prefer to have REST Api access if possible.

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

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

发布评论

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

评论(1

风追烟花雨 2024-10-15 06:15:18

使用 ant 任务可能不是一个好的解决方案,因为 ant 通常用于帮助构建和安装应用程序。

但是,您可以使用 HostManagerServlet 之类的东西来执行 Tomcat 中的一些管理任务。

http://tomcat.apache .org/tomcat-6.0-doc/api/org/apache/catalina/manager/host/HostManagerServlet.html

最好尝试直接访问它,因为它是一个 servlet,所以 url 是这样的无论如何你都可以访问它。

我预计安全将是您更关心的问题。

Using ant tasks probably won't be a good solution, as ant is generally used to help build and install applications.

But, you can use something like the HostManagerServlet to do some of the management tasks in Tomcat.

http://tomcat.apache.org/tomcat-6.0-doc/api/org/apache/catalina/manager/host/HostManagerServlet.html

It may be best to just try and access this directly, as it is a servlet, so urls are how you access it anyway.

Security will be your larger concern, I expect.

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