> I am developing two web applications that will share a few classes in > common. What is the best practice for handling this? Put a copy of the > class in the WEB-INF/classes/ directory structure of both web applications? > Or put the class in Tomcat's common/classes/ directory structure? These > common classes are specific to our business, not general purpose ones. > Also, these web applications are for our own internal use only, not ones > that we will bundle up and distribute, though we will need to manage moving > them successfully from our development server to our production server.
Hi, Jim. Why don�t you build a JAR file with the classes to be shared, and put it in %TOMCAT_HOME%/common/lib directory? -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
