This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
How to make the servet to invoke the independent java class which is not residing in the web app.
avitra kumar nimmadala
Greenhorn
Joined: Feb 06, 2013
Posts: 1
posted
0
Hi ,
I have a web application of which the servet has to invoke the independent java class which is not residing in the web application.
Please suggest me if there is any solution to iplement the above requirement.
thanks in advance.
Regards,
Avitra.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35252
7
posted
0
Classes used in the web app have to be in a place where one of the involved classloaders can get at them. Usually that's WEB-INF/lib or WEB-INF/classes in the wbe app itself, or maybe in a shared directory of the servlet container, or -as a last resort- via the extension mechanism of the JVM. If none of these work, then it's either really tricky (think custom classloaders) or impossible.