Tomcat启动时获取访问地址和端口号

时间:2021-11-05 00:48:15

遇到一个单节点多实例部署的情况,且配置文件部署平台统一管理了,在这种情况下想到用端口号区分具体实例下载。搜了一圈发现都是一个版本且存在问题的源码,干脆自己搞了一个。废话不说了,直接上源码。

Java代码    Tomcat启动时获取访问地址和端口号
  1. List<String> getEndPoints() throws MalformedObjectNameException,  
  2.         NullPointerException, UnknownHostException, AttributeNotFoundException,  
  3.         InstanceNotFoundException, MBeanException, ReflectionException {  
  4.     MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();  
  5.     Set<ObjectName> objs = mbs.queryNames(new ObjectName("*:type=Connector,*"),  
  6.             Query.match(Query.attr("protocol"), Query.value("HTTP/1.1")));  
  7.     String hostname = InetAddress.getLocalHost().getHostName();  
  8.     InetAddress[] addresses = InetAddress.getAllByName(hostname);  
  9.     ArrayList<String> endPoints = Lists.newArrayList();  
  10.     for (Iterator<ObjectName> i = objs.iterator(); i.hasNext(); ) {  
  11.         ObjectName obj = i.next();  下载
  12.         String scheme = mbs.getAttribute(obj, "scheme").toString();  
  13.         String port = obj.getKeyProperty("port");  
  14.         for (InetAddress addr : addresses) {  
  15.             String host = addr.getHostAddress();  
  16.             String ep = scheme + "://" + host + ":" + port;  
  17.             endPoints.add(ep);  
  18.         }  
  19.     }  
  20.     return endPoints;