io.quarkus.resteasy.reactive.jackson.runtime.serialisers.vertx.VertxJsonObjectBasicMessageBodyWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-resteasy-reactive-jackson-common Show documentation
Show all versions of quarkus-resteasy-reactive-jackson-common Show documentation
Common classes for Jackson serialization support for RESTEasy Reactive
package io.quarkus.resteasy.reactive.jackson.runtime.serialisers.vertx;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.nio.charset.StandardCharsets;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.ext.MessageBodyWriter;
import io.vertx.core.json.JsonObject;
public class VertxJsonObjectBasicMessageBodyWriter implements MessageBodyWriter {
@Override
public boolean isWriteable(Class> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
return isWriteable(type);
}
protected boolean isWriteable(Class> type) {
return JsonObject.class.isAssignableFrom(type);
}
@Override
public void writeTo(JsonObject o, Class> type, Type genericType, Annotation[] annotations, MediaType mediaType,
MultivaluedMap httpHeaders, OutputStream entityStream) throws IOException, WebApplicationException {
entityStream.write(o.encode().getBytes(StandardCharsets.UTF_8));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy