How to see JSP/Servlet changes without redeployment

If you want to see immediate changes in your JSP/Servlet without redeploying the Web application, you can configure your Web connector setting the development mode to true: example


<subsystem xmlns="urn:jboss:domain:web:1.0" default-virtual-server="default-host">
...
    <configuration>
        <jsp-configuration development="true"/>
    </configuration>
</subsystem>