openapi非常适合restful服务,目前,我正在通过使用 POST 到 /topic 所以我可以用redoc做一个网站的api。我想看看是否已经建立了这方面的文件系统。尤其是自从 GET /events 用于活动采购的软件越来越大。
POST
/topic
GET /events
roejwanj1#
cloudevents是一个cncf支持的项目,用于记录事件源,其中一个规范是针对kafka的https://github.com/cloudevents/sdk-java/blob/master/kafka/readme.md如果需要restapi,请查看kafka rest代理
k3fezbri2#
看起来asyncapi基本上就是您想要的:openapi,但是对于主题而不是rest端点。https://www.asyncapi.com/docs/getting-started/coming-from-openapi/
2条答案
按热度按时间roejwanj1#
cloudevents是一个cncf支持的项目,用于记录事件源,其中一个规范是针对kafka的
https://github.com/cloudevents/sdk-java/blob/master/kafka/readme.md
如果需要restapi,请查看kafka rest代理
k3fezbri2#
看起来asyncapi基本上就是您想要的:openapi,但是对于主题而不是rest端点。
https://www.asyncapi.com/docs/getting-started/coming-from-openapi/