如何将Swagger no config设置与Jersey 2集成
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将Swagger no config设置与Jersey 2集成相关的知识,希望对你有一定的参考价值。
我正在尝试使用在Tomcat 8.5上托管的Jersey 2项目进行准系统Swagger设置。我首先使用泽西入门指南(https://jersey.github.io/documentation/latest/getting-started.html)中的以下片段生成了泽西项目:
mvn archetype:generate -DarchetypeArtifactId=jersey-quickstart-webapp
-DarchetypeGroupId=org.glassfish.jersey.archetypes -DinteractiveMode=false
-DgroupId=com.example -DartifactId=simple-service-webapp -Dpackage=com.example
-DarchetypeVersion=2.27
然后我从swagger入门指南(https://github.com/swagger-api/swagger-core/wiki/Swagger-2.X---Getting-started)添加了Swagger依赖项:
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2-servlet-initializer</artifactId>
<version>2.0.0</version>
</dependency>
当在http://localhost:8080/simple-service-webapp/webapi/myresource点击api时,我得到了正确的答案。当我点击http://localhost:8080/simple-service-webapp/webapi/openapi.json时,我得到了404 Not Found。
有任何想法吗?
这是我的pom的样子:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>simple-service-webapp</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>simple-service-webapp</name>
<build>
<finalName>simple-service-webapp</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<!-- use the following artifactId if you don't need servlet 2.x compatibility -->
<!-- artifactId>jersey-container-servlet</artifactId -->
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<!-- uncomment this to get JSON support
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-binding</artifactId>
</dependency>
-->
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2-servlet-initializer</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
<properties>
<jersey.version>2.27</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
你还需要注册OpenApi resources。这些是提供JSON的JAX-RS资源类。由于您使用web.xml进行配置,因此只需将swagger软件包添加到要扫描的软件包列表中即可。
<servlet>
<servlet-name>Jersey Web Application</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>
com.example,
io.swagger.v3.jaxrs2.integration.resources
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
注意我将io.swagger.v3.jaxrs2.integration.resources
包添加到列表中,用逗号分隔。这将告诉泽西岛扫描该包,它将发现并注册AcceptHeaderOpenApiResource
和OpenApiResource
。两者之间的区别在于前者提供路径/openapi
,数据格式由请求中的Accept
头确定,后者提供路径/openapi.{type:json|yaml}
,其中数据格式由扩展名确定(.json或.yaml)在路上。
以上是关于如何将Swagger no config设置与Jersey 2集成的主要内容,如果未能解决你的问题,请参考以下文章
spring mvc swagger no operations defined in spec,怎么解决
如何将 Swagger 与 Maven + Java + Jersey +Tomcat 集成
如何将 Apollo-Gateway 与 swagger-to-graphql 工具一起使用?