Hot deploy on JBoss - how do I make JBoss “see” the change?

后端 未结 16 1553
傲寒
傲寒 2020-11-30 21:23

I am developing a Java EE application that I deploy over and over again on a local JBoss installation during development. I want to speed up the build by hot deploying my ap

16条回答
  •  旧时难觅i
    2020-11-30 21:54

    I am using JBoss AS 7.1.1.Final. Adding following code snippet in my web.xml helped me to change jsp files on the fly :

    
        jsp
        org.apache.jasper.servlet.JspServlet
        
            development
            true
        
        3
    
    

    Hope this helps.!!

提交回复
热议问题