1 Reply Latest reply on May 23, 2012 4:29 PM by ctomc

    How to configure jboss to reload jsp files?

    potemkin

      Hi,

       

      I'm using the following configuration in standalone.xml but it's not working:

       

              <subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host" native="false">

                  <configuration>

                      <jsp-configuration development="true" keep-generated="false" check-interval="1" modification-test-interval="1" recompile-on-fail="true"/>

                  </configuration>

                  <connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/>

                  <virtual-server name="default-host" enable-welcome-root="true">

                      <alias name="localhost"/>

                      <alias name="example.com"/>

                  </virtual-server>

              </subsystem>

       

      What am I missing?

      My webapp is "exploded" in the deployments directory.

       

      Thanks