此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.3.4! |
此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.3.4! |
终端节点提供有关应用程序的 bean 的信息。configprops
@ConfigurationProperties
检索所有 @ConfigurationProperties 个 Bean
要检索所有 bean,请向 发出请求,如以下基于 curl 的示例所示:@ConfigurationProperties
GET
/actuator/configprops
$ curl 'http://localhost:8080/actuator/configprops' -i -X GET
生成的响应类似于以下内容:
HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 3411
{
"contexts" : {
"application" : {
"beans" : {
"management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties" : {
"prefix" : "management.endpoints.web.cors",
"properties" : {
"allowedOrigins" : [ ],
"maxAge" : "PT30M",
"exposedHeaders" : [ ],
"allowedOriginPatterns" : [ ],
"allowedHeaders" : [ ],
"allowedMethods" : [ ]
},
"inputs" : {
"allowedOrigins" : [ ],
"maxAge" : { },
"exposedHeaders" : [ ],
"allowedOriginPatterns" : [ ],
"allowedHeaders" : [ ],
"allowedMethods" : [ ]
}
},
"management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties" : {
"prefix" : "management.endpoints.web",
"properties" : {
"pathMapping" : { },
"exposure" : {
"include" : [ "*" ],
"exclude" : [ ]
},
"basePath" : "/actuator",
"discovery" : {
"enabled" : true
}
},
"inputs" : {
"pathMapping" : { },
"exposure" : {
"include" : [ {
"value" : "*",
"origin" : "\"management.endpoints.web.exposure.include\" from property source \"Inlined Test Properties\""
} ],
"exclude" : [ ]
},
"basePath" : { },
"discovery" : {
"enabled" : { }
}
}
},
"spring.web-org.springframework.boot.autoconfigure.web.WebProperties" : {
"prefix" : "spring.web",
"properties" : {
"localeResolver" : "ACCEPT_HEADER",
"resources" : {
"staticLocations" : [ "classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/" ],
"addMappings" : true,
"chain" : {
"cache" : true,
"compressed" : false,
"strategy" : {
"fixed" : {
"enabled" : false,
"paths" : [ "/**" ]
},
"content" : {
"enabled" : false,
"paths" : [ "/**" ]
}
}
},
"cache" : {
"cachecontrol" : { },
"useLastModified" : true
}
}
},
"inputs" : {
"localeResolver" : { },
"resources" : {
"staticLocations" : [ { }, { }, { }, { } ],
"addMappings" : { },
"chain" : {
"cache" : { },
"compressed" : { },
"strategy" : {
"fixed" : {
"enabled" : { },
"paths" : [ { } ]
},
"content" : {
"enabled" : { },
"paths" : [ { } ]
}
}
},
"cache" : {
"cachecontrol" : { },
"useLastModified" : { }
}
}
}
}
}
}
}
}
响应结构
响应包含应用程序的 Bean 的详细信息。
下表描述了响应的结构:@ConfigurationProperties
路径 | 类型 | 描述 |
---|---|---|
|
|
以 id 为键的应用程序上下文。 |
|
|
|
|
|
应用于 Bean 属性名称的前缀。 |
|
|
Bean 的属性作为名称-值对。 |
|
|
绑定到此 bean 时使用的 configuration 属性的来源和值。 |
|
|
父应用程序上下文的 ID(如果有)。 |
路径 | 类型 | 描述 |
---|---|---|
|
|
以 id 为键的应用程序上下文。 |
|
|
|
|
|
应用于 Bean 属性名称的前缀。 |
|
|
Bean 的属性作为名称-值对。 |
|
|
绑定到此 bean 时使用的 configuration 属性的来源和值。 |
|
|
父应用程序上下文的 ID(如果有)。 |
按前缀检索 @ConfigurationProperties Bean
要检索在某个前缀下映射的 bean,请向 发出请求,如以下基于 curl 的示例所示:@ConfigurationProperties
GET
/actuator/configprops/{prefix}
$ curl 'http://localhost:8080/actuator/configprops/spring.jackson' -i -X GET
生成的响应类似于以下内容:
HTTP/1.1 200 OK
Content-Disposition: inline;filename=f.txt
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 878
{
"contexts" : {
"application" : {
"beans" : {
"spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties" : {
"prefix" : "spring.jackson",
"properties" : {
"serialization" : { },
"visibility" : { },
"parser" : { },
"datatype" : {
"jsonNode" : { },
"enum" : { }
},
"deserialization" : { },
"generator" : { },
"mapper" : { }
},
"inputs" : {
"serialization" : { },
"visibility" : { },
"parser" : { },
"datatype" : {
"jsonNode" : { },
"enum" : { }
},
"deserialization" : { },
"generator" : { },
"mapper" : { }
}
}
}
}
}
}
不需要精确,更通用的前缀将返回该前缀 stem 下映射的所有 bean。{prefix} |
响应结构
响应包含应用程序的 Bean 的详细信息。
下表描述了响应的结构:@ConfigurationProperties
路径 | 类型 | 描述 |
---|---|---|
|
|
以 id 为键的应用程序上下文。 |
|
|
|
|
|
应用于 Bean 属性名称的前缀。 |
|
|
Bean 的属性作为名称-值对。 |
|
|
绑定到此 bean 时使用的 configuration 属性的来源和值。 |
|
|
父应用程序上下文的 ID(如果有)。 |
不需要精确,更通用的前缀将返回该前缀 stem 下映射的所有 bean。{prefix} |
路径 | 类型 | 描述 |
---|---|---|
|
|
以 id 为键的应用程序上下文。 |
|
|
|
|
|
应用于 Bean 属性名称的前缀。 |
|
|
Bean 的属性作为名称-值对。 |
|
|
绑定到此 bean 时使用的 configuration 属性的来源和值。 |
|
|
父应用程序上下文的 ID(如果有)。 |