Development Environment Java 6, Maven 2.x, Eclipse 3.4.x, JBoss 5 and JBoss Seam - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:17:26Z http://stackoverflow.com/feeds/question/907459 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/907459/development-environment-java-6-maven-2-x-eclipse-3-4-x-jboss-5-and-jboss-seam 0 Development Environment Java 6, Maven 2.x, Eclipse 3.4.x, JBoss 5 and JBoss Seam gege 2009-05-25T17:18:39Z 2009-07-30T21:30:21Z <p>I have to organize a development environment where I can run Maven projects with JBoss Seam, IDE eclipse 3.4.x and deploying to JBoss 5. The projects that will run on this environment are based in Java 6, EJB3 and JSF1.2. The environment has to support hot-deploy.</p> <p>I used to work in a development environment with Sysdeo Plugin to make Tomcat run all my applications - I've rarely used EJB (only for MDB's). So I would prefer an environment similar to this.</p> <p>I'd like to know what you guys use for the kind of architecture (what kind of eclipse plugins - if they work fine, things like that)</p> <p><hr /></p> <p>The thing I really didn't get right is why my Maven2 project with SEAM as a dependency packaged as EAR doesn't appear in my server (in Eclipse Ganymede - tab servers) for me to make deploy (right click - option Add and Remove Projects...). Do I have to include an specific project nature to make my Maven2 EAR project visible to my JBoss AS included in my Eclipse Ganymede?</p> <p><hr /></p> <p>Seam doesn't appear to go well with Maven2. I'm facing some problems to make they work together - some dependencies appear to be missing and I have to put some extra files in some special places like seam.properties and components.xml with some special contents. I feel like forced to use seam-gen and Ant. Too bad!</p> http://stackoverflow.com/questions/907459/development-environment-java-6-maven-2-x-eclipse-3-4-x-jboss-5-and-jboss-seam/907662#907662 0 Answer by ipingu for Development Environment Java 6, Maven 2.x, Eclipse 3.4.x, JBoss 5 and JBoss Seam ipingu 2009-05-25T18:32:22Z 2009-05-25T18:32:22Z <p>Hi,</p> <p>I am currently working on the same environment you asked for, with the only difference I am running the app on a tomcat 6.0.18. I prefer to use tomcat 'cause it's so faster to run, and I don't use EJB for now.</p> <p>Eclipse plugins :</p> <ul> <li>maven : m2eclipse.codehaus.org</li> <li>jboss tools : www.jboss.org/tools</li> <li>web tools platform for hot deploying : www.eclipse.org/webtools/</li> </ul> <p>I took the eclipse JEE version, I don't use seam-gen to create the basic architecture.</p> <p>I don't have so many problems with this environment, sometimes the hot-deploy doesn't work and I have to manually clean files. The only problem I had was with the separation of my app in two modules : eclipse wasn't doing the job well (not taking the last package of one module while building the other one), and I discover the option "disable workspace resolution", which works fine now.</p> <p>Works fine. Hope it will for you.</p> http://stackoverflow.com/questions/907459/development-environment-java-6-maven-2-x-eclipse-3-4-x-jboss-5-and-jboss-seam/908052#908052 0 Answer by wires for Development Environment Java 6, Maven 2.x, Eclipse 3.4.x, JBoss 5 and JBoss Seam wires 2009-05-25T21:07:07Z 2009-05-25T21:07:07Z <p>Not sure if this is helpful to you, but but we run the following</p> <ul> <li>eclipse as IDE</li> <li>mercurial for source code management</li> <li>merclipse mercurial eclipse plugin <a href="http://goldenhammers.com/merclipse/" rel="nofollow">http://goldenhammers.com/merclipse/</a></li> <li>maven for builds (and m2eclipse)</li> <li>mylyn with bugzilla for issue tracking</li> <li>tomcat as application server</li> <li>hudson for continuous integration <a href="https://hudson.dev.java.net/" rel="nofollow">https://hudson.dev.java.net/</a></li> <li>reviewboard for code reviews <a href="http://www.review-board.org/" rel="nofollow">http://www.review-board.org/</a></li> <li>sonar for code quality metrics <a href="http://sonar.codehaus.org/" rel="nofollow">http://sonar.codehaus.org/</a></li> <li>proxmox VE for virtualization <a href="http://pve.proxmox.com/wiki/Main%5FPage" rel="nofollow">http://pve.proxmox.com/wiki/Main_Page</a></li> </ul> <p>Most things run on separate virtual machines to keep interference to a minimum. Proxmox VE is a breeze to setup (15 mins and you are running).</p> <p>Hudson monitors the repository and automatically builds and tests each push. If the war build is successful it is automatically (re)deployed (using a hudson plugin) into Tomcat and restarted.</p> <p>I cannot recommend these tools enough.</p> <p>HTH</p>