Package org.springframework.integration.monitor

Examples of org.springframework.integration.monitor.IntegrationMBeanExporter


  public void customJmxDomain() {
    this.context = new AnnotationConfigApplicationContext();
    this.context.register(CustomJmxDomainConfiguration.class,
        JmxAutoConfiguration.class, IntegrationAutoConfiguration.class);
    this.context.refresh();
    IntegrationMBeanExporter mbeanExporter = this.context
        .getBean(IntegrationMBeanExporter.class);
    DirectFieldAccessor dfa = new DirectFieldAccessor(mbeanExporter);
    assertEquals("foo.my", dfa.getPropertyValue("domain"));
  }
View Full Code Here

TOP

Related Classes of org.springframework.integration.monitor.IntegrationMBeanExporter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.