博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取 web 服务器 port
阅读量:5034 次
发布时间:2019-06-12

本文共 2081 字,大约阅读时间需要 6 分钟。

Tomcat:

public static String getServerPort(boolean secure) throws AttributeNotFoundException, InstanceNotFoundException, MBeanException, ReflectionException {          MBeanServer mBeanServer = null;          if (MBeanServerFactory.findMBeanServer(null).size() > 0) {              mBeanServer = (MBeanServer)MBeanServerFactory.findMBeanServer(null).get(0);          }                    if (mBeanServer == null) {              System.out.println("调用findMBeanServer查询到的结果为null");              return "";          }                    Set
names = null; try { names = mBeanServer.queryNames(new ObjectName("Catalina:type=Connector,*"), null); } catch (Exception e) { return ""; } Iterator
it = names.iterator(); ObjectName oname = null; while (it.hasNext()) { oname = (ObjectName)it.next(); String protocol = (String)mBeanServer.getAttribute(oname, "protocol"); String scheme = (String)mBeanServer.getAttribute(oname, "scheme"); Boolean secureValue = (Boolean)mBeanServer.getAttribute(oname, "secure"); Boolean SSLEnabled = (Boolean)mBeanServer.getAttribute(oname, "SSLEnabled"); if (SSLEnabled != null && SSLEnabled) {
// tomcat6开始用SSLEnabled secureValue = true;// SSLEnabled=true但secure未配置的情况 scheme = "https"; } if (protocol != null && ("HTTP/1.1".equals(protocol) || protocol.contains("http"))) { if (secure && "https".equals(scheme) && secureValue) { return ((Integer)mBeanServer.getAttribute(oname, "port")).toString(); } else if (!secure && !"https".equals(scheme) && !secureValue) { return ((Integer)mBeanServer.getAttribute(oname, "port")).toString(); } } } return ""; }

Weblogic参考:

http://blog.csdn.net/yunzhu666/article/details/8662039

 

转载于:https://www.cnblogs.com/xiluhua/p/6719788.html

你可能感兴趣的文章
一个简单的日志函数C++
查看>>
Java 8 中如何优雅的处理集合
查看>>
Oracle 体系结构之ORACLE物理结构
查看>>
ORA-12538: TNS: no such protocol adapter
查看>>
盒子模型
查看>>
局域网协议
查看>>
[HNOI2012]永无乡 线段树合并
查看>>
SqlServer之Convert 函数应用格式化日期(转)
查看>>
软件测试领域中的10个生存和发展技巧
查看>>
2017/09/15 ( 框架2)
查看>>
Centos下源码安装git
查看>>
gulp-rev-append md5版本号
查看>>
IO流之File类
查看>>
sql 基础语句
查看>>
CF717A Festival Organization(第一类斯特林数,斐波那契数列)
查看>>
oracle直接读写ms sqlserver数据库(二)配置透明网关
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
Oracle composite index column ordering
查看>>
ActiveReports 报表控件官方中文入门教程 (3)-如何选择页面报表和区域报表
查看>>
kaggle竞赛
查看>>