user160207
user160207

Reputation:

Automating JBoss deployment in Eclipse?

I'm looking for a way to automate deployment of a Flex application(written in Eclipse) EAR to the JBoss application server. That is, when I click 'Build' I want it to also do the deployment. It doesn't have to be a 'hot' deployment, since this is development I don't care about shutting down and restarting the application.

Upvotes: 3

Views: 6460

Answers (2)

Nils-Petter Nilsen
Nils-Petter Nilsen

Reputation: 943

JBoss Tools has kept me happy for a few months now. It was a bit tricky to get it up and running, but it's a real time saver once you've nailed the configuration.

Upvotes: 4

Michael Wiles
Michael Wiles

Reputation: 21186

You can configure the jboss server to auto deploy.

double click on the JBoss server in the server view, then select Publishing -> and click the Automatically public when resources change, set the interval to quite low.

Btw, you might want to look for the Jboss plugin - it works very well and makes deployment much faster.

Upvotes: 1

Related Questions