Hi, Dunno where I read this but for security reasons you should put all your jsps in a subdir of WEB-INF, such as /WEB-INF/jsp Also, you should put the jars you need at compile time in a different directory than the jar needed at runtime : for instance, your app may need classes12.zip (oracle) *and* hsql.jar (hypersonic SQL) to compile and be db-agnostic but you know you'll deploy on an oracle only system and therefore you don't need hsql.jar at runtime
depending on your IDE and the size of the dev team, you might want to consider using ant to ease compilation and make sure the whole team respects the dir structure you've chosen regards, Olivier -----Message d'origine----- De : Ashish Kulkarni [mailto:[EMAIL PROTECTED]] Envoye : mardi 14 janvier 2003 20:16 A : [EMAIL PROTECTED] Objet : general directory structure question Hi, I have to work on a web project and need some comments on the directory structure i will be using, the below diagram gives the overview of the directory structure, need comments on it c:\mywebsite - | |-WEB-INF-| | |- web.xml | | | |- classes- | | | | | -all xml files | | |- all class files | |- lib all jar file | |-pages- | | |- index.html all jsp & images | | |-Src-| | |- org etc all java casses | | |-Doc-| |-Documentation ===== A$HI$H __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

