RE: Best practice advice sought: Classes shared by >1 webapp

2002-09-06 Thread Andy Eastham
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

RE: Best practice advice sought: Classes shared by >1 webapp

2002-09-06 Thread wbchmura
BDY.RTF Description: RTF file

Re: Best practice advice sought: Classes shared by >1 webapp

2002-09-06 Thread Josiel S. Oliveira
> 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