If you change the URLs attribute so that it no longer contains the deploy 
directory, then yes, none of the services currently located in that directory 
will get deployed. Considering that these services include the web application 
deployer and the servlet container, not deploying them will prevent web apps 
from working also.

You have several options:

A) Succumb to conventions and deploy your web app to the deploy directory.

B) Rather than replacing the URLs attribute value, add a second entry to it, 
using a comma to separate the entries:

      <attribute name="URLs">
  |          deploy/,
  |          /full/path/to/your/app.war
  |       </attribute>
  | 

Note that you can add as many paths as you like, all comma-separated. Note, 
however, that only the first path is hot-deployed (if you do not understand 
what this means, you should use option A until you do understand it).


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4184972#4184972

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4184972
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to