Jim,
If you want the webapps to share the same static values in the same class,
put them in common/classes. (this allows a webapps to affect the data in
another webapp).
If you want the webapps to be totally independent, put a separate copy in
each webapp's individual classes directory.
Or you
BDY.RTF
Description: RTF file
> 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? Thes