现在我的myeclipse+jboss 在修改jsp或者java文件时都要重启jboss服务器

解决方案 »

  1.   

    让你的jboss可以热部署
    修改 jboss-4.0.4RC1/server/default/deploy/jbossweb-tomcat55.sar/context.xml<Context cookies="true" crossContext="true" antiResourceLocking="true" antiJARLocking="true">
       <Manager pathname=""/>
       <InstanceListener>org.jboss.web.tomcat.security.RunAsListener</InstanceListener>
    </Context>
    加上红色的部分,重启jboss,再用myeclipse Redeploy project的时候就不需要重启,部署完了直接开浏览器预览啦...