optimization - How to Optimize JSP loading by minimizing page load time? -
i working on spring mvc web project.application has jsp page page load time around 11 sec.i want minimize it.
page consists of filters , data of filters rendered jstl tags on jsp page.one of filter has list size of approx 4000 records.this results in response size of 2.7 mb. how can reduce response size?
i using model.addattribute("model",data) maping data on jsp page , on jsp use jstl looping iterate data.
is there way compress jsp size of page reduces on network?
edit
i solved issue lazy loading of data similar facebook on scroll bar.
Comments
Post a Comment