Beans (beans
)
beans
)
beans
端点提供了有关应用程序的 beans 的信息。
获取 Beans
要获取 beans,请向 /actuator/beans
发起一个 GET
请求,如下面的基于 curl 的示例所示:
$ curl 'http://localhost:8080/actuator/beans' -i -X GET
生成的响应类似于以下内容:
HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 1089
{
"contexts" : {
"application" : {
"beans" : {
"org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration" : {
"aliases" : [ ],
"scope" : "singleton",
"type" : "org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration",
"dependencies" : [ ]
},
"org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration" : {
"aliases" : [ ],
"scope" : "singleton",
"type" : "org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration",
"dependencies" : [ ]
},
"org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration" : {
"aliases" : [ ],
"scope" : "singleton",
"type" : "org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration",
"dependencies" : [ ]
}
}
}
}
}
响应结构
响应中包含了应用程序的 bean 的详细信息。下表描述了响应的结构:
路径 | 类型 | 描述 |
---|---|---|
contexts | Object | 按 id 键控的应用上下文。 |
contexts.*.parentId | String | 父应用上下文的 id(如果有)。 |
contexts.*.beans | Object | 应用上下文中的 bean,按名称键控。 |
contexts.*.beans.*.aliases | Array | 任何别名的名称。 |
contexts.*.beans.*.scope | String | bean 的作用域。 |
contexts.*.beans.*.type | String | bean 的完全限定类型。 |
contexts.*.beans.*.resource | String | 定义 bean 的资源(如果有)。 |
contexts.*.beans.*.dependencies | Array | 任何依赖项的名称。 |