2

从 oracle 的文档中:

域运行时 MBean 服务器:此 MBean 服务器还充当驻留在受管服务器上的 MBean 的单一访问点。

我想要做的是使用这个事实来访问我分散在几个托管服务器中的所有自定义 mBean。例如假设我有两个节点 server-1 server-2 。如何通过连接到管理员节点来访问 server-1 server-2 上的所有自定义 mBean?

我不想远程访问每个节点来返回结果我想要一个入口点我设法通过这样做来获取服务器的名称和状态以及其他信息

    JMXConnector connector;
            ObjectName service;
            MBeanServerConnection connection;
            String protocol = "t3"; 
        Integer portInteger = Integer.valueOf(<admin server port>);

      int port = portInteger.intValue();
      String jndiroot = "/jndi/";
      String mserver = "weblogic.management.mbeanservers.runtime"; 

      JMXServiceURL serviceURL = new JMXServiceURL(protocol, "<serverName>", port,
      jndiroot + mserver);  

      Hashtable h = new Hashtable();
      h.put(Context.SECURITY_PRINCIPAL, "weblogic");
      h.put(Context.SECURITY_CREDENTIALS, "weblogicpass");
      h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,
         "weblogic.management.remote");
      h.put("jmx.remote.x.request.waiting.timeout", new Long(10000));
      connector = JMXConnectorFactory.connect(serviceURL, h);
      connection = connector.getMBeanServerConnection();  service = new ObjectName("com.bea:Name=DomainRuntimeService,Type=weblogic.management.mbeanservers.domainruntime.DomainRuntimeServiceMBean");
      ObjectName[] ons = (ObjectName[]) connection.getAttribute(service, "ServerRuntimes");
       int length = (int) ons.length;

      for (int i = 0; i < length; i++) {
         String name = (String) connection.getAttribute(ons[i],
            "Name");
         String state = (String) connection.getAttribute(ons[i],
            "State");
          String internalPort = (String) connection.getAttribute(ons[i],"ListenPort");
         System.out.println("Server name: " + name + ".   Server state: "
            + state);

但我需要访问在每台服务器上创建的自定义 Mbean,而不仅仅是信息

4

1 回答 1

1

也许我的问题不清楚,但我找到了答案,现在我将在这里分享:问题摘要:我需要通过从客户端应用程序连接到管理服务器来访问托管服务器中存在的自定义 mBean。

答:要做到这一点,您需要将应用程序部署到管理员服务器(我尝试过远程但没有成功)

您需要连接到 DomainRuntimeServiceMBean,因为它为导航到域中的所有运行时和配置 MBean 提供了一个公共访问点。

搜索对象名称时添加 Location=

这是代码:

    Hashtable props = new Hashtable();
          props.put(Context.INITIAL_CONTEXT_FACTORY,
                    "weblogic.jndi.WLInitialContextFactory");

          props.put(Context.SECURITY_PRINCIPAL,   "<userName>");
          props.put(Context.SECURITY_CREDENTIALS, "<password>");
          Context ctx = new InitialContext(props);
  MBeanServer    server = (MBeanServer)ctx.lookup("java:comp/env/jmx/domainRuntime");


         ObjectName on =new ObjectName("com.<companyName>:Name=<Name>,Type=<Type>,Location=<managed_server_name>");
         boolean boolresult=(Boolean)server.invoke(on, "<method_Name>",
         new Object[]{"<ARG1>","<ARG2>","<ARG3>"}
         ,new String[]{"java.lang.String","java.lang.String","java.lang.String"}); 
         out.print(boolresult);
于 2012-01-12T14:21:17.703 回答