Issue
Hello i would like ask how it is possible configure jboss server for something like live, hot deploment:
- every time when i change some code of my jsp,html,js or css file i always need to clean and build project than deploy project to jboss and again, agian and again. That cost alot of my time. I waste time for that. It will be easy when i could work on files which already use a started jboss (deployed). But this files is in WAR file "project.war" and throught my IDE (Netbeans) i cant edit this files (jsp,css,html or js). Netbeans made this file uneditable.
I Would glad for solution step by step how it is possible to avoid this boring process.
Solution
Edit Standalone.xml,change development to "true"
<configuration> <jsp-configuration development="true"/> </configuration>
Start JBoss.
- Go to ServerLocation-> standalone\tmp\vfs
- Sort by "Date Modified" descending
- Open the first folder(something like deployment*******)
- There will be your complete exploded war.
- Go to the jsps,js,css location,edit & save the changes.
- changes will be displayed live.
Answered By - bondkn
Answer Checked By - Clifford M. (JavaFixing Volunteer)