有人可以分享一些关于如何使用 ReDoc 和 SpringBoot 框架来实现 API 文档的示例。如果有人知道 ReDoc + Springboot 的一些很好的例子,那将是很大的帮助。
问问题
1009 次
1 回答
1
您可以创建一个启用 springdoc-openapi-ui [1] 的 Spring Boot 应用程序,然后添加一个静态 html [2] ,如下所示!通过将 spec-url 更改为 http://localhost:8080/v3/api-docs [3]
[1]:https ://www.baeldung.com/spring-rest-openapi-documentation
[2]:https ://stackoverflow.com/a/42393332/878710
[3]:
<!DOCTYPE html>
<html>
<head>
<title>Redoc</title>
<!-- needed for adaptive design -->
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
<!--
Redoc doesn't change outer page styles
-->
<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<redoc spec-url='http://localhost:8080/v3/api-docs'></redoc>
<script src="https://cdn.jsdelivr.net/npm/redoc@latest/bundles/redoc.standalone.js"> </script>
</body>
</html>
于 2021-10-18T16:02:11.790 回答