Example usage for org.springframework.context.support LiveBeansView MBEAN_DOMAIN_PROPERTY_NAME

List of usage examples for org.springframework.context.support LiveBeansView MBEAN_DOMAIN_PROPERTY_NAME

Introduction

In this page you can find the example usage for org.springframework.context.support LiveBeansView MBEAN_DOMAIN_PROPERTY_NAME.

Prototype

String MBEAN_DOMAIN_PROPERTY_NAME

To view the source code for org.springframework.context.support LiveBeansView MBEAN_DOMAIN_PROPERTY_NAME.

Click Source Link

Document

The "MBean Domain" property name.

Usage

From source file:org.springframework.cloud.function.deployer.ApplicationRunner.java

private Map<String, String> defaultProperties(String id) {
    Map<String, String> map = new HashMap<>();
    map.put(LiveBeansView.MBEAN_DOMAIN_PROPERTY_NAME, "function-deployer-" + id);
    map.put("spring.jmx.default-domain", "function-deployer-" + id);
    map.put("spring.jmx.enabled", "false");
    return map;//from   w  w  w .j a v a 2 s .  c  o  m
}