Jersey 2 istemcisiyle boş bir gövdeyle nasıl bir posta isteği gönderirim?Jersey 2 istemcisiyle boş gövdeyi yükleme
final MyClass result = ClientBuilder.newClient()
.target("http://localhost:8080")
.path("path")
.queryParam("key", "value")
.request(APPLICATION_JSON)
.post(What to fill in here if the body should be left empty??, MyClass.class);
Güncelleme: bu işler:
final MyClass result = ClientBuilder
.newBuilder().register(JacksonFeature).build()
.target("http://localhost:8080")
.path("path")
.queryParam("key", "value")
.request(APPLICATION_JSON)
.post(null, MyClass.class);
Geç partiye değilim, ama FWIW Güncellemenizin benim özel sorunun cevabı - özellikle ben o çalıştı ama bir 'MessageBodyProviderNotFoundException var bir Content-Type başlığı :) –