I’m using Java+struts2+JSP as the web application framework.
I have to pass some huge objects through struts actions to my jsp pages. this makes the pages so heavy to load and on the other hand they suck the server’s bandwidth out.
Is there any way to send compressed objects via struts2 to a jsp page and decompress them there?
I’m using Java+struts2+JSP as the web application framework. I have to pass some huge
Share
If you need to move data inside your server side, check this:
http://www.google.de/search?q=java+gzip&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-GB:official&client=firefox-a
If you want to improve download speed for clients, enable gzip compression in your webserver.