You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@tomee.apache.org by bu...@apache.org on 2012/05/26 00:21:24 UTC

svn commit: r819118 - in /websites/staging/openejb/trunk: cgi-bin/ content/ content/tomee-and-eclipse.html

Author: buildbot
Date: Fri May 25 22:21:24 2012
New Revision: 819118

Log:
Staging update by buildbot for openejb

Modified:
    websites/staging/openejb/trunk/cgi-bin/   (props changed)
    websites/staging/openejb/trunk/content/   (props changed)
    websites/staging/openejb/trunk/content/tomee-and-eclipse.html

Propchange: websites/staging/openejb/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri May 25 22:21:24 2012
@@ -1 +1 @@
-1342062
+1342823

Propchange: websites/staging/openejb/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri May 25 22:21:24 2012
@@ -1 +1 @@
-1342062
+1342823

Modified: websites/staging/openejb/trunk/content/tomee-and-eclipse.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomee-and-eclipse.html (original)
+++ websites/staging/openejb/trunk/content/tomee-and-eclipse.html Fri May 25 22:21:24 2012
@@ -189,6 +189,27 @@ are also started up and adds up to the s
 11. Start the server.
 </code></pre>
 
+<p>If jsp changes are not being hot deployed then this is because the jsp servlet is set to development=false in the web.xml file. To allow jsp hot deployment alter this value to true and restart Tomee.</p>
+
+<p>This is the relevant snippet of the web.xml file.
+    <servlet>
+        <servlet-name>jsp</servlet-name>
+        <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
+        <init-param>
+            <param-name>fork</param-name>
+            <param-value>false</param-value>
+        </init-param>
+        <init-param>
+            <param-name>xpoweredBy</param-name>
+            <param-value>false</param-value>
+        </init-param>
+        <init-param>
+            <param-name>development</param-name>
+            <param-value><em>false</em></param-value>
+        </init-param>
+        <load-on-startup>3</load-on-startup>
+    </servlet></p>
+