Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My team is taking over an existing web product that is made up of 3 Maven projects: one for a WAR, one for a couple of EJBs, and one that contains a few JBoss config files and builds an EAR that contains the WAR and EJB-JAR from the other two projects. We use Eclipse Helios and are currently building the projects individually with maven install and copying the resulting EAR to an instance of JBoss AS 6 for testing. While that process works, I am exploring the possibility of somehow streamlining that process; ideally a setup where small changes are automatically published to JBoss. Can anyone recommend a resource for configuring our projects/Eclipse to publish changes to JBoss automatically?

share|improve this question

1 Answer

up vote 0 down vote accepted

Get yourself "Eclipse IDE for Java EE Developers" and install JBoss Tools. The combination of the two will allow you to configure projects and server instances such that it is easy to deploy and test incremental changes.

Note that for this to work, your projects need to be WTP conformant. If you aren't using WTP already, take a look at the structure and metadata of projects created with Dynamic Web Project, EJB and Enterprise Application Project wizards. Either copy your source into new projects or copy the metadata files and fragments (very carefully).

share|improve this answer
Thanks for the response, Konstantin. Does WTP support deployment of incremental changes from multiple projects that make up an EAR? – mreynolds0404 Mar 16 '11 at 14:02
Yes, although the actual incremental deployment perf is dependent in part on the server adapter. My understanding is that the JBoss one is pretty decent. – Konstantin Komissarchik Mar 16 '11 at 14:12
And do you know if the wizards support creating multi-project "projects"? Does the fact we are using Maven change anything? Should I be creating the projects through a WTP wizard(s) or a m2eclipse facility? – mreynolds0404 Mar 16 '11 at 14:18
WTP supports one module per project, so you would want to create multiple Eclipse projects to represent your app. You may want to familiarize yourself with WTP on a sample app first. Search for tutorial and EclipseCon presentations. JBoss IDE site may have some articles of their own. I wouldn't recommend m2eclipse to my worst enemy. You would be better off trying your luck with "mvn eclipse::eclipse" plugin which generates standard Eclipse projects that might be closer to necessary form. – Konstantin Komissarchik Mar 16 '11 at 14:24
Thanks for the help, Konstatin. I will probably have future questions, but for now, I have somewhere to start. – mreynolds0404 Mar 16 '11 at 14:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.