2 Replies Latest reply on Jul 1, 2003 12:29 PM by fuming

    jsp recompilation

    fuming

      Do I have to build every time for a change to take effect? In other words, is there a way to skip the build process but see my code change (such as in small changes in jsps) working?

        • 1. Re: jsp recompilation
          jonlee

          With JSPs, as long as Jasper (the Apache Jasper component) is directed to check the JSP, you don't need to redeploy the whole WAR. Just update the JSP file and access the page. Depending on the settings you have for Jasper, it will check for changes and recompile if necessary. The default configuration for Jasper in Tomcat and Jetty embedded systems should allow this to work out of the box. Just checked on my test system.

          • 2. Re: jsp recompilation
            fuming

            Appreciate the answer. Will try. Thanks.