我可以通过以下配置在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>
暂无答案!
目前还没有任何答案,快来回答吧!