gate.handler.JsonHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gate Show documentation
Show all versions of gate Show documentation
A multipurpose java library
package gate.handler;
import gate.converter.Converter;
import java.io.IOException;
import java.io.OutputStream;
import java.io.UncheckedIOException;
import java.nio.charset.Charset;
import javax.enterprise.context.ApplicationScoped;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@ApplicationScoped
public class JsonHandler implements Handler
{
@Override
public void handle(HttpServletRequest request, HttpServletResponse response, Object value)
{
try
{
String string = Converter.toJson(value);
byte[] bytes = string.getBytes(Charset.forName("UTF-8"));
response.setCharacterEncoding("UTF-8");
response.setContentLength(bytes.length);
response.setContentType("application/json");
try ( OutputStream os = response.getOutputStream())
{
os.write(bytes);
os.flush();
}
} catch (IOException ex)
{
throw new UncheckedIOException(ex);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy