java.lang.IllegalStateException : No Server ALPNProcessors - WireMock

标签 java wiremock

我正在尝试在我的 Maven 项目上运行单元测试(使用 Wiremock)并观察到以下错误。

java.lang.IllegalStateException: No Server ALPNProcessors

我尝试添加 alpn-boot-8.1.12.v20180117.jarXbootclasspath如下
-Xbootclasspath/p:/path/to/alpn-boot-8.1.12.v20180117.jar

并将其放入 jvm.config .mvn 中的文件我的项目的目录并验证它是通过执行 ps -ef | grep Xbootclasspath 设置的但我仍然遇到同样的错误。

它正在使用 在 Windows 机器上运行Java 8 u191 并且不添加任何 Xbootclasspath但不是在 Linux 上使用 Java 8 u181

我还尝试将以下依赖项添加到我的 pom.xml
<dependency>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-alpn-server</artifactId>
    <version>9.4.20.v20190813</version>
    <scope>test</scope>
</dependency>

但仍然没有工作。

pom.xml
<?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>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>${maven.compiler.version}</version>
                <configuration>
                    <source>8</source>
                    <target>8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.0.0-M3</version>
                <configuration>
                    <workingDirectory>${real.base.dir}</workingDirectory>
                    <systemProperties>
                        <log4j.configurationFile>${basedir}/src/test/resources/log4j.xml</log4j.configurationFile>
                    </systemProperties>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <version>${jacoco.version}</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>prepare-agent</goal>
                        </goals>
                    </execution>
                    <!-- attached to Maven test phase -->
                    <execution>
                        <id>report</id>
                        <phase>test</phase>
                        <goals>
                            <goal>report</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>com.googlecode.addjars-maven-plugin</groupId>
                <artifactId>addjars-maven-plugin</artifactId>
                <version>1.0.5</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>add-jars</goal>
                        </goals>
                        <configuration>
                            <resources>
                                <resource>
                                    <directory>${basedir}/lib</directory>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.version>3.8.1</maven.compiler.version>
        <maven.surefire.version>3.0.0-M3</maven.surefire.version>

        <javax.validation.version>2.0.1.Final</javax.validation.version>
        <syncope.version>2.1.5</syncope.version>
        <resteasy.client.version>4.4.2.Final</resteasy.client.version>
        <jax.rs.version>2.1.1</jax.rs.version>
        <junit.jupiter.version>5.5.2</junit.jupiter.version>

        <jacoco.version>0.8.5</jacoco.version>
        <real.base.dir>${basedir}</real.base.dir>
    </properties>

    <dependencies>

        <dependency>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
            <version>${javax.validation.version}</version>
        </dependency>

        <dependency>
            <groupId>javax.ws.rs</groupId>
            <artifactId>javax.ws.rs-api</artifactId>
            <version>${jax.rs.version}</version>
        </dependency>

        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-client</artifactId>
            <version>${resteasy.client.version}</version>
        </dependency>

        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-jaxb-provider</artifactId>
            <version>${resteasy.client.version}</version>
        </dependency>

        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-client</artifactId>
            <version>4.4.2.Final</version>
        </dependency>

        <dependency>
            <groupId>org.syncope.identityconnectors</groupId>
            <artifactId>framework</artifactId>
            <version>0.4.3</version>
        </dependency>


        <!-- Start Test dependencies -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>${junit.jupiter.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.github.tomakehurst</groupId>
            <artifactId>wiremock-jre8</artifactId>
            <version>2.25.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>3.2.4</version>
            <scope>test</scope>
        </dependency>

        <!-- End Test dependencies -->
    </dependencies>

</project>

最佳答案

将wiremock更改为旧版本解决此问题


<dependency>
    <groupId>com.github.tomakehurst</groupId>
    <artifactId>wiremock-jre8</artifactId>
    <version>2.21.0</version>
    <scope>test</scope>
</dependency>
<!-- Needed for the SSLContextFactory$Client class -->
<dependency>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-util</artifactId>
    <version>9.4.14.v20181114</version>
    <scope>test</scope>
</dependency>

总之,新版本的jetty会用到alpn模块,而jdk8没有这个模块。
详情请引用https://github.com/jetty-project/jetty-alpn

关于java.lang.IllegalStateException : No Server ALPNProcessors - WireMock,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60074168/

相关文章:

java - Java 中的平台相关编码问题

spring-boot - 在 jenkins 上运行 Wiremock 时如何修复 "NoHttpResponseException"?

java - 如何在 JUnit 5 测试中使用 WireMock 的响应模板

java - 如何在 WireMock 中成功代理 HTTPS 端点?

java - 如何在 JSP 页面中检索并显示数据库中的图像?

java - 如何使用 Maven 中列为依赖项的包中的类?

java-8 - 如何在wiremock中使用mappingsloader来加载映射文件?

java - 应用程序无法使用 docker 连接到 smtp 主机和端口 587

java - 是否可以在另一个类中调用一个类的构造函数?