Relative Content

Tag Archive for jetty

How to set encoding for HttpServletRequest and HttpServletResponse in jetty12? to achieve it?

In jetty9, I can set the encoding for request, response and uri by inheriting handlerWrapper and rewriting handle(String target, Request baseRequest, HttpServletRequest request,
HttpServletResponse response). Is there an alternative method in jetty12?
I set it up like this
`
protected void doFilterCharacterEncoding(
HttpServletRequest request, HttpServletResponse response)
throws UnsupportedEncodingException {