Reputation:
I'd like to run different projects on a single JBoss AS in IntelliJ IDEA (different projects, not different modules). All the projects should support hot deployment.
I know how to do that in Eclipse, but I've got no idea of how to do it in IntelliJ IDEA. Is this even possible?
Upvotes: 1
Views: 2108
Reputation: 476
I work around this by adding Maven Projects to my window (Maven Projects tab -> (+) Add Maven Project). My projects don't share anything, they have their own modules and their own artifacts. While editing configuration for my jboss, clicking Deployment -> Add, all the web modules from all my projects show up and I can add them one by one. Hopefully you can do the same.
Upvotes: 3
Reputation: 402225
IntelliJ IDEA module is the same as Eclipse project, see the FAQ. Having multiple modules in one IDEA project allows you to deploy several modules at the same time to the same server.
Upvotes: 0