You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sirona.apache.org by rm...@apache.org on 2014/02/09 18:50:49 UTC

svn commit: r1566332 - /incubator/sirona/site-content/trunk/src/site/markdown/web.md

Author: rmannibucau
Date: Sun Feb  9 17:50:48 2014
New Revision: 1566332

URL: http://svn.apache.org/r1566332
Log:
adding few details on jsp monitoring

Modified:
    incubator/sirona/site-content/trunk/src/site/markdown/web.md

Modified: incubator/sirona/site-content/trunk/src/site/markdown/web.md
URL: http://svn.apache.org/viewvc/incubator/sirona/site-content/trunk/src/site/markdown/web.md?rev=1566332&r1=1566331&r2=1566332&view=diff
==============================================================================
--- incubator/sirona/site-content/trunk/src/site/markdown/web.md (original)
+++ incubator/sirona/site-content/trunk/src/site/markdown/web.md Sun Feb  9 17:50:48 2014
@@ -86,6 +86,12 @@ For Servlet 2.5 containers just declare 
 </filter>
 <filter-mapping>
     <filter-name>sirona-jsp-activator</filter-name>
+    <!--
+    Any url which will use a jsp.
+    If you use req.getRequestDispatcher("....jsp").forward(req, resp);
+    ensure to match the original pattern (* in the worse case).
+    This filter has an overhead almost null (single test).
+    -->
     <url-pattern>*.jsp</url-pattern>
 </filter-mapping>
 ]]></pre>