File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Servlets and the fly likes servlet call the method from one servlet to another servlet Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "servlet call the method from one servlet to another servlet" Watch "servlet call the method from one servlet to another servlet" New topic
Author

servlet call the method from one servlet to another servlet

rex tony
Ranch Hand

Joined: Aug 29, 2007
Posts: 159
servlet Class ABC Can call the another display() of the Servlet Class DEF

[code]

Servlet ABC Servlet DEF

Display1()
Display2() -Display2() can call from the servlet DEF-----> Display2()
Display3()
[\code]
If so,How?
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35252
    
    7
No. If you have common functionality between servlets, you should factor that out into its own class which can then be called from all servlets.


Android appsImageJ pluginsJava web charts
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: servlet call the method from one servlet to another servlet
 
Similar Threads
Object Lock and a class level lock
Anonymous Inner Class Question
Has-A doubt
A little help!
Abstract classes - instantiation