当前位置: 首页 > 知识库问答 >
问题:

Quarkus-找不到内容类型应用程序的编写器/x-wan-form-urlencoded type

轩辕啸
2023-03-14

这是我使用jax rs客户端执行请求的代码:

private Client client;

private static final int TIMEOUT = 8000;

@PostConstruct
public void init() {
    client = ClientBuilder.newBuilder()
            .readTimeout(TIMEOUT, TimeUnit.MILLISECONDS)
            .connectTimeout(TIMEOUT, TimeUnit.MILLISECONDS)
            .build();
}

....

final String resource = "/some-endpoint/{id}/securityinfo";
final String path = url + resource;

final WebTarget target = client
        .target(path)
        .resolveTemplate("id", email);

final var form = new Form().param("mail", email);

final Response response = target
        .request()
        .post(Entity.entity(form, MediaType.APPLICATION_FORM_URLENCODED));

if (response.getStatusInfo().getFamily() != Response.Status.Family.SUCCESSFUL) {
    throw new MyException(response.readEntity(String.class));
}

我收到错误:

javax。ws。rs.ProcessingException:RESTEASY004655:无法调用请求:javax。ws。rs.ProcessingException:RESTEASY003215:找不到内容类型应用程序/x-www-form-urlencoded-type:javax的编写器。ws。rs.core。类型

这只会在表单-内容类型请求中发生,因为json支持工作正常。

编辑

这些是使用的依赖项:

<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-hibernate-orm</artifactId>
</dependency>
<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-rest-client</artifactId>
</dependency>
<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-rest-client-jackson</artifactId>
</dependency>
<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-jdbc-oracle</artifactId>
</dependency>
<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-arc</artifactId>
</dependency>
<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-jsonb</artifactId>
</dependency>
<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-junit5</artifactId>
    <scope>test</scope>
</dependency>

共有1个答案

胡鸿远
2023-03-14

您是否尝试使用(https://docs.oracle.com/javaee/7/api/javax/ws/rs/client/Entity.html#form-javax.ws.rs.core.Form-):

Entity.form(form);

我不确定它会解决这个问题,因为它只是你拥有的东西的简写。但我愿意试一试。

为了更容易找到解决方案,您可以共享您在项目中使用的依赖项。

 类似资料: