在日食微配置文件应用程序上大摇大摆



我有一个 java microprofile 应用程序,我想添加 swagger 到它。 应用程序具有"自定义"应用程序类

@ApplicationPath("/api")
public class RestApplication extends Application {
public RestApplication() {
Swagger swagger = new Swagger();
new SwaggerContextService().updateSwagger(swagger);
BeanConfig beanConfig = new BeanConfig();
beanConfig.setDescription("Parser for sheet music");
beanConfig.setTitle("Ironfox");
beanConfig.setVersion("0.0.0");
beanConfig.setSchemes(new String[]{"http"});
beanConfig.setBasePath("/api");
beanConfig.setResourcePackage("se.pro12.ironfox");
beanConfig.setScan(true);
}
}

问题是它因错误而beanConfig.setScan(true)失败

java.lang.NoSuchMethodError: com.google.common.collect.Sets$SetView.iterator()Lcom/google/common/collect/UnmodifiableIterator;

我真的不明白为什么。 我什至尝试向google-collections添加依赖项。

以前有没有人见过这个或对如何解决它有任何想法?

我拥有的 pom 文件

<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>se.pro12</groupId>
<artifactId>ironfox</artifactId>
<version>1.0</version>
<packaging>war</packaging>
<properties>
<failOnMissingWebXml>false</failOnMissingWebXml>
<runInBackground>false</runInBackground>
</properties>
<build>
<finalName>ironfox</finalName>
<plugins>
<plugin>
<groupId>fish.payara.maven.plugins</groupId>
<artifactId>payara-micro-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<goals>
<goal>bundle</goal>
<goal>start</goal>
</goals>
</execution>
</executions>
<configuration>
<payaraVersion>4.1.2.173</payaraVersion>
<useUberJar>true</useUberJar>
<deployWar>false</deployWar>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.eclipse.microprofile</groupId>
<artifactId>microprofile-bom</artifactId>
<version>1.1.0</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>1.18.3</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>LATEST</version>
</dependency>
<dependency>
<groupId>com.google.collections</groupId>
<artifactId>google-collections</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-jaxrs</artifactId>
<version>1.5.19</version>
</dependency>
</dependencies>
</project>

您使用的Payara Micro版本(4.1.2.173(使用旧版本的Guava库 - v19,它不提供Swagger所需的方法。

您有以下几种选择:

  • 禁用类加载委派,如文档中所述 - 您可以在 Glassfish-Web 中本地执行此操作.xml在您的应用程序中
  • 将较新版本的番石榴库复制到Payara Micro JAR中,而不是现有的番石榴.jarMICRO-INF/runtime
  • 等待几天,直到Payara Micro 5.182发布,并使用MicroProfile Open API而不是Swagger

升级到较新版本的Payara Micro无济于事,因为它仍然使用相同版本的Guava库。

相关内容

  • 没有找到相关文章

最新更新