> 4) setting up Tomcat and deploying your webapp > If you use a recent Tomcat-edition (4.1.12 for example) you > have to uncomment SSI and CGI entries in conf/web.xml. (see > RELEASE-NOTES-4.1.txt in > tomcat/) > > If you use Linux you can symlink your webapp to tomcat, > otherwise you need to copy it from target/ to tomcat/webapps/.
The much easier way is to create a <Context> in tomcat's server.xml conf file that points to your webapp dir. That way your webapp is always deployed and you don't have to manually copy your changes to tomcat al the time. See the Tomcat docs for more details but here's my entry: <Context path="/freya" docBase="E:/src/Wisdom/freya/target/freya" debug="0"/> The above cause tomcat to map /freya directly to my target/freya dir. Age -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
