编辑:问题是quarkus-rest-client-reactive
,看我的回答。
根据我对 Quarkus 中可用的 MicroProfile REST 客户端的理解,我应该能够在我的 REST 客户端界面中定义子资源,这将允许我像这样将资源嵌套在彼此之下。
package org.acme.example
import org.eclipse.microprofile.rest.client.inject.RegisterRestClient;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
@RegisterRestClient
@Path("/api/foo")
public interface FoosService {
@GET
@Produces(MediaType.APPLICATION_JSON)
Uni<List<Foo>> getAll();
@Path("/{id}")
FooService foo(@PathParam("id") String id);
}
public interface FooService {
@GET
@Produces(MediaType.APPLICATION_JSON)
Uni<Foo> toRepresentation();
}
但是,当我在我的代码中注入和调用客户端接口时,它会AbstractMethodError
在client.foo("bar").toRepresentation()
调用中抛出一个。
@Path("/bar")
public class BarResource {
@RestClient
FoosResource client;
@GET
@Produces(MediaType.APPLICATION_JSON)
public Foo getBar() {
return client.foo("bar").toRepresentation();
}
}
我对此的所有研究似乎都表明这是可能的,但 Quarkus 没有显示客户端子资源的具体示例。