4.5. OpenAPI 集成
概述
您可以使用 OpenAPI 服务为 CamelContext 文件中的任何 REST 定义路由和端点创建 API 文档。为此,请使用带有 camel-openapi-java
模块的 Camel REST DSL,该模块纯是基于 Java 的。camel-openapi-java
模块会创建一个 servlet,它将与 CamelContext 集成,并从每个 REST 端点中提取信息,以 JSON 或 YAML 格式生成 API 文档。
如果使用 Maven,请编辑 pom.xml
文件,以添加对 camel-openapi-java
组件的依赖项:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-openapi-java</artifactId> <version>x.x.x</version> <!-- Specify the version of your camel-core module. --> </dependency>
配置 CamelContext 以启用 OpenAPI
要在 Camel REST DSL 中启用使用 OpenAPI,请调用 apiContextPath ()
来设置 OpenAPI-generated API 文档的上下文路径。例如:
public class UserRouteBuilder extends RouteBuilder { @Override public void configure() throws Exception { // Configure the Camel REST DSL to use the netty4-http component: restConfiguration().component("netty4-http").bindingMode(RestBindingMode.json) // Generate pretty print output: .dataFormatProperty("prettyPrint", "true") // Set the context path and port number that netty will use: .contextPath("/").port(8080) // Add the context path for the OpenAPI-generated API documentation: .apiContextPath("/api-doc") .apiProperty("api.title", "User API").apiProperty("api.version", "1.2.3") // Enable CORS: .apiProperty("cors", "true"); // This user REST service handles only JSON files: rest("/user").description("User rest service") .consumes("application/json").produces("application/json") .get("/{id}").description("Find user by id").outType(User.class) .param().name("id").type(path).description("The id of the user to get").dataType("int").endParam() .to("bean:userService?method=getUser(${header.id})") .put().description("Updates or create a user").type(User.class) .param().name("body").type(body).description("The user to update or create").endParam() .to("bean:userService?method=updateUser") .get("/findAll").description("Find all users").outTypeList(User.class) .to("bean:userService?method=listUsers"); } }
OpenAPI 模块配置选项
下表中描述的选项可让您配置 OpenAPI 模块。按照如下所示设置选项:
-
如果您将
camel-openapi-java
模块用作 servlet,请通过更新web.xml
文件并为您要设置的每个配置选项指定init-param
元素来设置选项。 -
如果您在使用 Camel REST 组件的
camel-openapi-java
模块,请通过调用适当的RestConfigurationDefinition
方法(如enableCORS ()、
或host ()
contextPath ()
)来设置选项。使用RestConfigurationDefinition.apiProperty ()
方法设置api.xxx
选项。
选项 | 类型 | 描述 |
---|---|---|
| 字符串 | 用于 API 相关的电子邮件地址。 |
| 字符串 | 要联系的人员或机构的名称。 |
| 字符串 | 网站 URL 以获取更多信息。 |
| 布尔值 |
如果您的应用程序使用多个 |
| 字符串 | 可过滤在上下文列表中出现 CamelContext ID 的模式。您可以指定正则表达式,并使用 * 作为通配符。这与 Camel Intercept 功能使用的模式匹配设备相同。 |
| 字符串 | 用于 API 的许可证名称。 |
| 字符串 | API 使用的许可证的 URL。 |
| 字符串 |
设置 REST API 生成文档的路径,如 |
| 字符串 | API 服务条款的 URL。 |
| 字符串 | 应用程序的标题。 |
| 字符串 | API 的版本。默认值为 0.0.0。 |
| 字符串 |
必需。设置提供 REST 服务的路径。指定相对路径。也就是说,不要指定 |
| 布尔值 |
是否启用 HTTP 访问控制(CORS)。这可让 CORS 查看 REST API 文档,而不用于访问 REST 服务。默认值为 false。建议改为使用 |
| 字符串 |
设置运行 OpenAPI 服务的主机的名称。默认为根据 |
| 字符串 |
要使用的协议方案。使用逗号分隔多个值,例如 |
| 字符串 | OpenAPI 规格版本。默认值为 3.0。 |
获取 JSON 或 YAML 输出
从 Camel 3.1 开始,camel-openapi-java
模块支持 JSON 和 YAML 格式的输出。要指定您想要的输出,将 /openapi.json
或 /openapi.yaml
添加到请求 URL。如果请求 URL 没有指定格式,则 camel-openapi-java
模块会检查 HTTP Accept 标头来检测是否可以接受 JSON 或 YAML。如果同时接受,或者没有被设置为接受,则 JSON 是默认的返回格式。
例子
在 Apache Camel 3.x 发行版中,camel-example-openapi-cdi
和 camel-example-openapi-java
演示了 camel-openapi-java
模块的使用。
在 Apache Camel 2.x 分发中,camel-example-swagger-cdi
和 camel-example-swagger-java
演示了 camel-swagger-java
模块的使用。
提高 OpenAPI 生成的文档
从 Camel 3.1 开始,您可以通过定义参数详细信息(如名称、描述、数据类型、参数类型等)来增强 OpenAPI 生成的文档。如果使用 XML,请指定 param
元素来添加此信息。以下示例演示了如何提供 ID 路径参数的信息:
<!-- This is a REST GET request to view information for the user with the given ID: --> <get uri="/{id}" outType="org.apache.camel.example.rest.User"> <description>Find user by ID.</description> <param name="id" type="path" description="The ID of the user to get information about." dataType="int"/> <to uri="bean:userService?method=getUser(${header.id})"/> </get>
以下是 Java DSL 中的相同示例:
.get("/{id}").description("Find user by ID.").outType(User.class) .param().name("id").type(path).description("The ID of the user to get information about.").dataType("int").endParam() .to("bean:userService?method=getUser(${header.id})")
如果定义了名为 body
的参数,则必须同时指定 body
作为该参数的类型。例如:
<!-- This is a REST PUT request to create/update information about a user. --> <put type="org.apache.camel.example.rest.User"> <description>Updates or creates a user.</description> <param name="body" type="body" description="The user to update or create."/> <to uri="bean:userService?method=updateUser"/> </put>
以下是 Java DSL 中的相同示例:
.put().description("Updates or create a user").type(User.class) .param().name("body").type(body).description("The user to update or create.").endParam() .to("bean:userService?method=updateUser")
另请参阅: example /camel-example-servlet-rest-tomcat
。