如何获取 Websphere 6.1 端口号

发布于 2024-07-08 13:46:17 字数 76 浏览 6 评论 0原文

我目前正在开发 WebSphere 6.1 Web 项目。

在我的java代码中,如何获取当前正在运行的应用程序端口?

I'm currently working on a WebSphere 6.1 Web Project.

In my java code, how can i get the current running application port?

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

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

发布评论

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

评论(2

蓝眼泪 2024-07-15 13:46:17

Servlet API 在 HttpServletRequest 中为您提供本地端口。

protected void doGet(HttpServletRequest request,
        HttpServletResponse response) throws ServletException, IOException {
    PrintWriter writer = response.getWriter();
    writer.write("" + request.getLocalPort());
    writer.close();
}

端口在节点的serverindex.xml中定义(例如[WAS]/profiles/AppSrv01/config/cells/localhostNode01Cell/nodes/localhostNode01/serverindex.xml)。

<specialEndpoints xmi:id="NamedEndPoint_1214751102556" endPointName="WC_defaulthost">
  <endPoint xmi:id="EndPoint_1214751102556" host="*" port="9080"/>

我不确定 WAS JMX 支持是否公开了此信息 - 您必须检查文档。

The servlet API gives you the local port in HttpServletRequest.

protected void doGet(HttpServletRequest request,
        HttpServletResponse response) throws ServletException, IOException {
    PrintWriter writer = response.getWriter();
    writer.write("" + request.getLocalPort());
    writer.close();
}

The ports are defined in the node's serverindex.xml (e.g. [WAS]/profiles/AppSrv01/config/cells/localhostNode01Cell/nodes/localhostNode01/serverindex.xml).

<specialEndpoints xmi:id="NamedEndPoint_1214751102556" endPointName="WC_defaulthost">
  <endPoint xmi:id="EndPoint_1214751102556" host="*" port="9080"/>

I'm not sure if the WAS JMX support exposes this information - you'd have to check the doc.

樱花坊 2024-07-15 13:46:17

如果您使用 RAD,您可以从 IDE 运行管理控制台,然后发现 WAS 使用的所有端口

http://pic.dhe.ibm.com/infocenter/radhelp/v9/index.jsp?topic=% 2Fcom.ibm.sca.tools.doc%2Fsamples%2Ftopics%2Fwas_ports.html
在此处输入图像描述

If you use RAD you can run administrative console from IDE and then discover all the ports used by WAS

http://pic.dhe.ibm.com/infocenter/radhelp/v9/index.jsp?topic=%2Fcom.ibm.sca.tools.doc%2Fsamples%2Ftopics%2Fwas_ports.html
enter image description here

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