是否可以使用 Jquery 检查 tomcat 服务器是否在端口 8080 上运行?

发布于 2024-12-21 08:38:06 字数 353 浏览 0 评论 0原文

我必须在jsp页面中显示tomcat和mysql的运行状态..如果tomcat和mysql关闭了,我必须显示为“Down”..当我使用java时,

try {
URL url = new URL(protocol, host, port, "");
URLConnection connection = url.openConnection();

connection.connect();
} catch (Exception e) {
    isAlive = false;
}

它需要太多时间来加载带有状态的jsp..所以我计划用 jquery 检查 tomcat 状态..这可能吗?或者我可以用什么方法来实现它。

I have to display tomcat and mysql running status in jsp page.. If tomcat and mysql is down, i have to display as "Down".. When i use java's

try {
URL url = new URL(protocol, host, port, "");
URLConnection connection = url.openConnection();

connection.connect();
} catch (Exception e) {
    isAlive = false;
}

Its taking too much time to load the jsp with status.. So i planned to check tomcat status with jquery.. Is it possible ? Or what way can i accomplish it.

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

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

发布评论

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

评论(1

迷乱花海 2024-12-28 08:38:06

通过 jquery 中的 ajax 调用该服务器上的某个站点:

  $.get("some_site_url")
    .success(function() { alert("server is working"); })
    .error(function() { alert("server is not working"); }); 

Call some site on that server via ajax in jquery:

  $.get("some_site_url")
    .success(function() { alert("server is working"); })
    .error(function() { alert("server is not working"); }); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文