My company has a website and running Yslow on it reported that the no of HTTP requests were in the range of 120-130. Accessing the site from UK was pretty slow. Now we used CSS sprites to reduce the no of css images and we were already using JS and CSS aggregation. There were still 10-12 DWR interface scripts and as browser stops rendering while its downloading and rendering js files. I was looking for a solution for aggregate DWR generated interfaces. I searched a lot and than landed onto JAWR. As we are using build time aggregation for static JS I am using JAWR only for generated interface JS. Here are the things I did.
Add jawr lib to WEB-INF/classes
==============================web.xml============================
<servlet>
<servlet-name>JawrServlet</servlet-name>
<servlet-class>net.jawr.web.servlet.JawrServlet</servlet-class>
<init-param>
<param-name>configLocation</param-name>
<param-value>/jawr.properties</param-value>
</init-param>
<init-param>
<param-name>mapping</param-name>
<param-value>/jawrBundle/</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>JawrServlet</servlet-name>
<url-pattern>/jawrBundle/*</url-pattern>
</servlet-mapping>
Note JAWR servlet should start after DWR servlet
=====================jawr.properties===============================
# Common properties
jawr.debug.on=false
jawr.gzip.on=true
jawr.gzip.ie6.on=false
jawr.charset.name=UTF-8
jawr.js.bundle.agg_dwr.id=/jawrBundle/agg_dwr.js
jawr.js.bundle.agg_dwr.mappings=dwr:_**
#dont forget the below property.
#I forgot it and struggled for 6 hours after reading JAWR code to figure this out
jawr.dwr.mapping=/dwr/
======================JSP changes==============================
<%@ taglib prefix="jwr" uri="http://jawr.net/tags" %>
<jwr:script src="/jawrBundle/agg_dwr.js"/>
====================================================
Add jawr lib to WEB-INF/classes
==============================web.xml============================
<servlet>
<servlet-name>JawrServlet</servlet-name>
<servlet-class>net.jawr.web.servlet.JawrServlet</servlet-class>
<init-param>
<param-name>configLocation</param-name>
<param-value>/jawr.properties</param-value>
</init-param>
<init-param>
<param-name>mapping</param-name>
<param-value>/jawrBundle/</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>JawrServlet</servlet-name>
<url-pattern>/jawrBundle/*</url-pattern>
</servlet-mapping>
Note JAWR servlet should start after DWR servlet
=====================jawr.properties===============================
# Common properties
jawr.debug.on=false
jawr.gzip.on=true
jawr.gzip.ie6.on=false
jawr.charset.name=UTF-8
jawr.js.bundle.agg_dwr.id=/jawrBundle/agg_dwr.js
jawr.js.bundle.agg_dwr.mappings=dwr:_**
#dont forget the below property.
#I forgot it and struggled for 6 hours after reading JAWR code to figure this out
jawr.dwr.mapping=/dwr/
======================JSP changes==============================
<%@ taglib prefix="jwr" uri="http://jawr.net/tags" %>
<jwr:script src="/jawrBundle/agg_dwr.js"/>
====================================================
This aggregation module exhibit effective Java programmers how to impact with DWR to create coercive AJAX applications. It starts with a tutorial on DWR’s important features and functions. Then it covers surround up the utilization environment.
ReplyDelete