Hello all I want to make a filter for tomcat to deflate all responces of certain MIME type. Any guidelines?
...
String ae = request.getHeader("accept-encoding");
if (ae != null && ae.indexOf("deflate") != -1) {
deflate response...?????
}
chain.doFilter(request, res);