Issue
I am trying to use eclipse kepler for Java EE 7.I already installed JBoss Tools and added JBoss Wildfly successfully as a server. However my changes are not automatically deployed. Is there anyway the app can be deployed automatically just as when using glassfish?
Solution
Using Eclipse, click twice on your WildFly Server to edit the following properties:
- Publishing: choose "Automatically publish after a build event". I like to change the publishing interval to 1 second too.
- Application Reload Behavior: check the "Customize application reload ..." checkbox and edit the regex pattern to
\.jar$|\.class$
That's it. Good luck!
Answered By - Valdemar