What if you don't include the JSP file but "include" the related JAVA file and use CLASSPATH? Will that work? You cannot, of course, make this dynamic, since you have class loader issues. The biggest issue is the class loader issue. You might create a set of interfaces and implemenations outside your web application that allow dynamic reloading. I don't see, however, why your edited files are not just popped into your web application without issues?
Jack On Mon, 27 Dec 2004 12:22:50 -0800 (PST), [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello, > > We have a web application that is overwritten each time we push a new > version of the code into production. However, we have jsp files that are > included by the web application (dynamically via a jsp:include), but are > edited outside of the web application... and should not be overwritten > just because the core code is updated. > > What is the best practice for including jsp files that exist outside the > web application? I have seen a couple of threads of putting these > "included" jsp files in a separate web application that is not > overwritten... but I was wondering if there was a better solution. > > Thank you, > -Raiden Johnson > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- ------------------------------ "You can lead a horse to water but you cannot make it float on its back." ~Dakota Jack~ "You can't wake a person who is pretending to be asleep." ~Native Proverb~ "Each man is good in His sight. It is not necessary for eagles to be crows." ~Hunkesni (Sitting Bull), Hunkpapa Sioux~ ----------------------------------------------- "This message may contain confidential and/or privileged information. If you are not the addressee or authorized to receive this for the addressee, you must not use, copy, disclose, or take any action based on this message or any information herein. If you have received this message in error, please advise the sender immediately by reply e-mail and delete this message. Thank you for your cooperation." --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
