0
任何人都知道如何在Spring MVC的Rest Controller上啓用GZIP壓縮。 Tomcat具有此功能,但它將應用於所有Restful API的響應。我只想壓縮某些Restful API的HTTP響應。Spring MVC gzip壓縮
任何人都知道如何在Spring MVC的Rest Controller上啓用GZIP壓縮。 Tomcat具有此功能,但它將應用於所有Restful API的響應。我只想壓縮某些Restful API的HTTP響應。Spring MVC gzip壓縮
併爲它適用於某些URL:
if(httpRequest.getRequestURI().endsWith("/api/service")){//or similar verification
//DO compression
}else{
chain.doFilter(request, response);
}