java—我们如何在SpringDocsOpenAPI的执行器端点(如/health)上添加默认响应代码?

wi3ka0sx  于 2021-07-16  发布在  Java
关注(0)|答案(0)|浏览(257)

我可以通过以下配置在api中显示执行器端点:

springdoc:
  show-actuator: true

我可以使用以下配置管理我的/健康端点的httpMap:

management:
  endpoint:
    health:
      status:
        http-mapping:
          down: 500
          fatal: 500
          out-of-service: 500

通过这个配置,openapi ui表示my/health端点的返回代码是200和404。我也希望是500。

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.1.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
<dependency>
            <groupId>org.springdoc</groupId>
            <artifactId>springdoc-openapi-ui</artifactId>
            <version>1.5.3</version>
        </dependency>

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题