A servlet filter that does automatic LISA integration. If LISA is testing your servlet, include a LISA filter for
JSPs/Servlets in the LISA test. That client-side filter will automatically add HTTP headers which are parsed
by this server-side filter. A new LISA test context is opened on the thread servicing the HTTP request. Depending
on the configuration, server side events such as logging, SQLs, exceptions and any explicit LISA integration
is captured and returned to LISA as an embedded base-64 encoded HTML comment in the response.
To deploy this filter, add it to your WEB-INF/web.xml configuration, e.g.
< filter >
< filter-name > LisaIntegrationFilter < /filter-name >
< filter-class > com.itko.lisaint.servlet.filter.ServerSideFilter < /filter-class >
< /filter >
< filter-mapping >
< filter-name > LisaIntegrationFilter < /filter-name >
< url-pattern > /* < / url-pattern >
< /filter-mapping >