I am having two queries 1. Can I deploy web application as a folder instead of war file in JBoss AS 7? 2. If not ,how to update the JSP or html or js files with out building/deploying the war file again?
相关问题
- Case in-sensitive Jboss 7 web application context
- JBoss 7.1.1 and the EJB 3.1 Timer Service
- Load Resource returns null with Jboss7
- ClassNotFoundException marshaling EJB parameters
- Retrieving Native Connection from JBOSS wrapped Co
相关文章
- JBoss Deploying non-JDBC-compliant driver class co
- JAX-RS with Jersey not working in JBoss AS
- How to obtain JBoss Server Group Name programatica
- Jboss AS7 - jboss-deployment-structure.xml deploym
- Deploying WSO2 ESB 4.6.0 onto JBoss 7
- How to create multiple persistence unit Names in J
- Error deploying war into JBoss AS 7 (domain mode):
- JBoss 7 NOT Java EE6 Certified
JBoss supports the ability to deploy an archive file or as an exploded directory. To explode a Java EE archive, unzip the archive to a directory that is named the same as the archive file. As long as the directory name has the correct extension (.war, .ear, etc.) JBoss will deploy the directory normally. So if your war file has name
HelloWorld.war
, your exploded directory name should beHelloWorld.war
too.Please also note that it is recommended to edit your
deployment-scanner
in thestandalone.xml
configuration file and changingauto-deploy-exploded
property back to false for exploded deployment. Quote from JBoss 7.1 Documentation:Edit:
Please see link https://community.jboss.org/thread/200114. Looks like this is a confirmed bug in JBoss 7.1.1 that JBoss ignores the configuration in jsp-configuration and does not reload modified jsp. It is fixed in 7.1.2. You need to build 7.1.2 nightly build yourself. Or talk to JBoss Support if you have Enterprise support.