Response Header too large - Jetty Embedded version 9
问题 I'm getting an exception of "Response Header too large" when using Jetty, the exception is thrown at the Client and only when the size of the jsonValue is large (greater than 1500 bytes). If the jsonvalue is smaller, everything works fine. This is the code I have, it is very simple. Server Code: Server server = new Server(8080); ServletHandler handler = new ServletHandler(); server.setHandler(handler); handler.addServletWithMapping(StoreServlet.class, "/store"); server.start(); server.join();