此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.3.4spring-doc.cn

此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.3.4spring-doc.cn

该端点提供有关 configuration 和 auto-configuration 类的条件评估的信息。conditionsspring-doc.cn

检索报告

要检索报告,请向 发出请求,如以下基于 curl 的示例所示:GET/actuator/conditionsspring-doc.cn

$ curl 'http://localhost:8080/actuator/conditions' -i -X GET

生成的响应类似于以下内容:spring-doc.cn

HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 3705

{
  "contexts" : {
    "application" : {
      "positiveMatches" : {
        "EndpointAutoConfiguration#endpointOperationParameterMapper" : [ {
          "condition" : "OnBeanCondition",
          "message" : "@ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans"
        } ],
        "JacksonEndpointAutoConfiguration#endpointObjectMapper" : [ {
          "condition" : "OnClassCondition",
          "message" : "@ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder'"
        }, {
          "condition" : "OnPropertyCondition",
          "message" : "@ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched"
        } ],
        "EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor" : [ {
          "condition" : "OnBeanCondition",
          "message" : "@ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans"
        } ]
      },
      "negativeMatches" : {
        "WebFluxEndpointManagementContextConfiguration" : {
          "notMatched" : [ {
            "condition" : "OnWebApplicationCondition",
            "message" : "not a reactive web application"
          } ],
          "matched" : [ {
            "condition" : "OnClassCondition",
            "message" : "@ConditionalOnClass found required classes 'org.springframework.web.reactive.DispatcherHandler', 'org.springframework.http.server.reactive.HttpHandler'"
          } ]
        },
        "GsonHttpMessageConvertersConfiguration.GsonHttpMessageConverterConfiguration" : {
          "notMatched" : [ {
            "condition" : "GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition",
            "message" : "AnyNestedCondition 0 matched 2 did not; NestedCondition on GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition.JacksonJsonbUnavailable NoneNestedConditions 1 matched 1 did not; NestedCondition on GsonHttpMessageConvertersConfiguration.JacksonAndJsonbUnavailableCondition.JsonbPreferred @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jsonb) did not find property 'spring.mvc.converters.preferred-json-mapper'; NestedCondition on GsonHttpMessageConvertersConfiguration.JacksonAndJsonbUnavailableCondition.JacksonAvailable @ConditionalOnBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; SearchStrategy: all) found bean 'mappingJackson2HttpMessageConverter'; NestedCondition on GsonHttpMessageConvertersConfiguration.PreferGsonOrJacksonAndJsonbUnavailableCondition.GsonPreferred @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=gson) did not find property 'spring.mvc.converters.preferred-json-mapper'"
          } ],
          "matched" : [ ]
        },
        "WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping" : {
          "notMatched" : [ {
            "condition" : "OnManagementPortCondition",
            "message" : "Management Port actual port type (SAME) did not match required type (DIFFERENT)"
          } ],
          "matched" : [ ]
        }
      },
      "unconditionalClasses" : [ "org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration", "org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration", "org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration" ]
    }
  }
}

响应结构

响应包含应用程序条件评估的详细信息。 下表描述了响应的结构:spring-doc.cn

路径 类型 描述

contextsspring-doc.cn

Objectspring-doc.cn

以 id 为键的应用程序上下文。spring-doc.cn

contexts.*.positiveMatchesspring-doc.cn

Objectspring-doc.cn

具有匹配条件的类和方法。spring-doc.cn

contexts.*.positiveMatches.*.[].conditionspring-doc.cn

Stringspring-doc.cn

条件的名称。spring-doc.cn

contexts.*.positiveMatches.*.[].messagespring-doc.cn

Stringspring-doc.cn

条件匹配原因的详细信息。spring-doc.cn

contexts.*.negativeMatchesspring-doc.cn

Objectspring-doc.cn

条件不匹配的类和方法。spring-doc.cn

contexts.*.negativeMatches.*.notMatchedspring-doc.cn

Arrayspring-doc.cn

匹配的条件。spring-doc.cn

contexts.*.negativeMatches.*.notMatched.[].conditionspring-doc.cn

Stringspring-doc.cn

条件的名称。spring-doc.cn

contexts.*.negativeMatches.*.notMatched.[].messagespring-doc.cn

Stringspring-doc.cn

条件不匹配原因的详细信息。spring-doc.cn

contexts.*.negativeMatches.*.matchedspring-doc.cn

Arrayspring-doc.cn

匹配的条件。spring-doc.cn

contexts.*.negativeMatches.*.matched.[].conditionspring-doc.cn

Stringspring-doc.cn

条件的名称。spring-doc.cn

contexts.*.negativeMatches.*.matched.[].messagespring-doc.cn

Stringspring-doc.cn

条件匹配原因的详细信息。spring-doc.cn

contexts.*.unconditionalClassesspring-doc.cn

Arrayspring-doc.cn

无条件自动配置类的名称(如果有)。spring-doc.cn

contexts.*.parentIdspring-doc.cn

Stringspring-doc.cn

父应用程序上下文的 ID(如果有)。spring-doc.cn

路径 类型 描述

contextsspring-doc.cn

Objectspring-doc.cn

以 id 为键的应用程序上下文。spring-doc.cn

contexts.*.positiveMatchesspring-doc.cn

Objectspring-doc.cn

具有匹配条件的类和方法。spring-doc.cn

contexts.*.positiveMatches.*.[].conditionspring-doc.cn

Stringspring-doc.cn

条件的名称。spring-doc.cn

contexts.*.positiveMatches.*.[].messagespring-doc.cn

Stringspring-doc.cn

条件匹配原因的详细信息。spring-doc.cn

contexts.*.negativeMatchesspring-doc.cn

Objectspring-doc.cn

条件不匹配的类和方法。spring-doc.cn

contexts.*.negativeMatches.*.notMatchedspring-doc.cn

Arrayspring-doc.cn

匹配的条件。spring-doc.cn

contexts.*.negativeMatches.*.notMatched.[].conditionspring-doc.cn

Stringspring-doc.cn

条件的名称。spring-doc.cn

contexts.*.negativeMatches.*.notMatched.[].messagespring-doc.cn

Stringspring-doc.cn

条件不匹配原因的详细信息。spring-doc.cn

contexts.*.negativeMatches.*.matchedspring-doc.cn

Arrayspring-doc.cn

匹配的条件。spring-doc.cn

contexts.*.negativeMatches.*.matched.[].conditionspring-doc.cn

Stringspring-doc.cn

条件的名称。spring-doc.cn

contexts.*.negativeMatches.*.matched.[].messagespring-doc.cn

Stringspring-doc.cn

条件匹配原因的详细信息。spring-doc.cn

contexts.*.unconditionalClassesspring-doc.cn

Arrayspring-doc.cn

无条件自动配置类的名称(如果有)。spring-doc.cn

contexts.*.parentIdspring-doc.cn

Stringspring-doc.cn

父应用程序上下文的 ID(如果有)。spring-doc.cn