帮助创建一个 Android 应用程序来访问 Tomcat 服务器?
我有兴趣创建一个应用程序来在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.