访问weblogic上的Mbeans

时间:2012-01-11 14:36:43

标签: weblogic jmx mbeans

来自oracle的文档:

  

Domain Runtime MBean Server:此MBean服务器也充当单个服务器   驻留在受管服务器上的MBean的访问点。

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

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

    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);

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

1 个答案:

答案 0 :(得分:1)

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

答案: 要做到这一点,你需要将你的应用程序部署到管理员服务器(我尝试远程,但它没有工作)

您需要连接到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);