RE: Where to put Java files/classes

2002-10-29 Thread Michael Schulz
Subject: Re: Where to put Java files/classes Hi Ryan, you shouldn't have your source files mixed up with Tomcat. You should rather develop somewhere else and use a build tool like Jakarta Ant to deploy your app to Tomcat. Craig's App Developer Guide at tomcathome/webapps/tomcat-docs/appdev/index.html

Re: Where to put Java files/classes

2002-10-27 Thread Andreas Probst
Hi Ryan, you shouldn't have your source files mixed up with Tomcat. You should rather develop somewhere else and use a build tool like Jakarta Ant to deploy your app to Tomcat. Craig's App Developer Guide at tomcathome/webapps/tomcat-docs/appdev/index.html gives a very good introduction into

Where to put Java files/classes

2002-10-26 Thread Ryan Heusinkveld
Hi all, I am trying to configure Tomcat to allow me to import and use classes that I have created within my jsp pages. I imported them within my page, but I get the error that the classes cannot be found. I created a directory under my $CATALINA_HOME called 'src', and packaged my classes

Re: Where to put Java files/classes

2002-10-26 Thread Garrett Smith
you put any classes and packages here: /webapps/your-app-name/WEB-INF/classes/ jar files (such as mm.mysql) go here: /webapps/your-app-name/WEB-INF/lib/ Core Servlets and JavaServer Pages by Marty Hall explains all the details related to the basic issues of configuration (and more advanced