java - 在测试中未找到带有 Jersey 的 Spring Boot 中的处理程序方法

标签 java spring-boot jersey spring-webflux spring-jersey

当应用程序启动并从测试访问时,Spring Boot/Jersey 找不到处理程序方法。如果我单独启动应用程序并使用浏览器访问 http://localhost:8080/demo 一切都很好。

日志显示:“未找到 [/demo] 的处理程序方法”。相关日志输出:

2018-06-18 17:04:31.071 DEBUG 7628 --- [nio-8080-exec-1] o.s.web.reactive.DispatcherHandler       : Processing GET request for [http://localhost:8080/demo]
2018-06-18 17:04:31.083 DEBUG 7628 --- [nio-8080-exec-1] s.w.r.r.m.a.RequestMappingHandlerMapping : Looking up handler method for path /demo
2018-06-18 17:04:31.085 DEBUG 7628 --- [nio-8080-exec-1] s.w.r.r.m.a.RequestMappingHandlerMapping : Did not find handler method for [/demo]
2018-06-18 17:04:31.087 DEBUG 7628 --- [nio-8080-exec-1] o.s.w.r.handler.SimpleUrlHandlerMapping  : Matching pattern for request [[path='/demo']] is /**

该应用程序由以下类组成(用 Kotlin 编写):

资源

import org.springframework.stereotype.Component
import javax.ws.rs.GET
import javax.ws.rs.Path
import javax.ws.rs.core.Response

@Component
@Path("/")
class Resource {

    @GET
    @Path("demo")
    fun test() = Response.ok("Hi!").encoding("UTF-8").build()
}

泽西配置

import org.glassfish.jersey.server.ResourceConfig
import org.springframework.stereotype.Component

@Component
class JerseyConfig : ResourceConfig() {

    init {
        register(Resource::class.java)
    }
}

应用程序:

import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication

@SpringBootApplication
class App

fun main(args: Array<String>) {
    runApplication<App>(*args)
}

失败的测试:

import org.junit.jupiter.api.Test
import org.junit.jupiter.api.TestInstance
import org.junit.jupiter.api.extension.ExtendWith
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.test.context.junit.jupiter.SpringExtension
import org.springframework.test.web.reactive.server.WebTestClient

@ExtendWith(SpringExtension::class)
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT)
class ResourceTest {

    @Autowired
    lateinit var client: WebTestClient

    @Test
    fun getTest() {
        client.get().uri("demo").exchange().expectStatus().isOk
    }
}

如果我使用 Jersey 客户端进行测试,我会得到同样的错误:

@Test
fun testWithJersey() {
    val client = ClientBuilder.newClient()
    val response = client.target("http://localhost:8080/demo").request().get()
    assertThat(response.status).isEqualTo(200)
}

构建.gradle:

buildscript {
    ext {
        kotlinVersion = '1.2.50'
        springBootVersion = '2.0.3.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
        classpath("org.jetbrains.kotlin:kotlin-allopen:${kotlinVersion}")
    }
}

apply plugin: 'kotlin'
apply plugin: 'kotlin-spring'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

compileKotlin {
    kotlinOptions {
        freeCompilerArgs = ["-Xjsr305=strict"]
        jvmTarget = "1.8"
    }
}
compileTestKotlin {
    kotlinOptions {
        freeCompilerArgs = ["-Xjsr305=strict"]
        jvmTarget = "1.8"
    }
}

repositories {
    mavenCentral()
}

dependencies {
    compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
    compile("org.jetbrains.kotlin:kotlin-reflect")
    compile('org.springframework.boot:spring-boot-starter-jersey')
    testCompile("org.springframework.boot:spring-boot-starter-test") {
        exclude group: "junit", module: "junit"
    }
    testCompile('org.springframework.boot:spring-boot-starter-webflux')
    testCompile("org.junit.jupiter:junit-jupiter-api")
    testRuntime("org.junit.jupiter:junit-jupiter-engine")
}

测试代码本身似乎没问题,因为当我用 Thread.sleep(...) 替换测试方法的主体,然后从浏览器访问服务器时,我得到了同样的错误(由于“未找到 [/demo] 的处理程序方法”而导致 404)。

为什么在测试中找不到处理程序方法?我需要改变什么?

最佳答案

您确定 WebTestClient 是一个通用客户端(发出实际的网络请求),而不仅仅是像 MockMvc 那样与 Spring MVC 一起使用吗?该错误听起来像是在寻找 Spring MVC 处理程序方法。如果它是通用客户端,则错误消息不会说明有关处理程序方法的任何内容,而可能会说明有关 URL 的内容。

我想您需要向真实的客户端发出实际的网络请求。例如,如果您使用 Jersey 客户端,您可以执行类似的操作

@LocalServerPort
private int port;

private Client client = ClientBuilder.newClient();

@Test
public void testCustomerLocationOnPost() {
    URI resourceUri = UriBuilder.fromUri("http://localhost")
            .port(port).path("demo").build();

    Respons response = client.target(resourcrUri).request().get();

    assertThat(response.getStatus()).isEqualTo(200);

}

关于java - 在测试中未找到带有 Jersey 的 Spring Boot 中的处理程序方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50912879/

相关文章:

java - 在 Linux 系统上增加堆大小

java - Spring Boot OAuth 资源服务器代理配置

java - Jersey REST-Servlet 中的 RolesAllowed 注释不起作用

java - 获取 FormDataParam 属性和特性

java - Java 中的二叉树,带有 getter 和 setter

java - listFiles 不返回文件,只返回顶级文件夹

spring - java 9模块从A和B读取包X

java - 如何以线程安全的方式在 JAX-RS 资源中使用 JerseyClient

java - 如何在 GAEJ 中建模实体关系?

java - Spring 启动 : Mocking SOAP Web Service