Achieving seam hot deployment with Intellij-idea - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T14:32:53Z http://stackoverflow.com/feeds/question/690676 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/690676/achieving-seam-hot-deployment-with-intellij-idea 1 Achieving seam hot deployment with Intellij-idea Daan van Yperen 2009-03-27T17:18:23Z 2009-03-27T23:11:54Z <p>How can I achieve hot deployment with Intellij-IDEA and Seam 2?</p> <p>I've set up a separate module to deploy hot deployable class files to WEB-INF/dev/, but it still deploys as one big clump.</p> http://stackoverflow.com/questions/690676/achieving-seam-hot-deployment-with-intellij-idea/691781#691781 1 Answer by Daan van Yperen for Achieving seam hot deployment with Intellij-idea Daan van Yperen 2009-03-27T23:11:54Z 2009-03-27T23:11:54Z <p>Steps to get hot deployment with Intellij-IDEA and Jboss: (This is assuming your WAR project already deploys from an exploded directory successfully)</p> <ol> <li>Create a new module and move your hot source folder into it.</li> <li>Open your primary module settings and add your new hot-module as a new dependency.</li> <li>Open the web-facet of your primary module, and in Modules and Libraries to package click 'add', 'add module'. change its 'output relative path' to WEB-INF/dev</li> <li>Edit your run configuration and enable 'Build on frame deactivation'. </li> <li>Run the server.</li> </ol> <p>Now, whenever you alt-tab out of IDEA, your views and seam POJO controllers are redeployed automatically.</p>