Update and rename 42.1. Customizing MBean names to 42.1. Customizing MBean names.md

master
qibaoguang 2015-03-02 23:42:44 +08:00
parent 9fef654c14
commit eadb303304
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
### 42.1. 自定义MBean名称
MBean的名称通常产生于端点的id。例如health端点被暴露为`org.springframework.boot/Endpoint/HealthEndpoint`。
如果你的应用包含多个Spring ApplicationContext你会发现存在名称冲突。为了解决这个问题你可以将`endpoints.jmx.uniqueNames`设置为true这样MBean的名称总是唯一的。
你也可以自定义JMX域所有的端点都在该域下暴露。这里有个application.properties示例
```java
endpoints.jmx.domain=myapp
endpoints.jmx.uniqueNames=true