diff mvc1 and mvc2
wahts is mean by servlet chaining?
Answer Posted / laxman
The response object from one servlet is passed as request to
another Servlet, this is called as Servlet Chaining.
the getServlet() method that is used in Servlet chaining is
deprecated and Sun's Javadoc specifies clearly that the business
logic to be shared by servlets to be put in a separate
non-servlet class. Also it would be good to put the
logic in separate class and just invoke the method
when required.
Cheers,
Gaya3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is a class a subclass of itself?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
What are transaction attributes?
What is Remote Server?
Can I import same package/class twice? Will the jvm load the package twice at runtime?
Can constructors be synchronized in java?
Name the eight primitive java types.
Where can I find seam examples and documentation?
Why doesn’t the focus feature on the tag work in every circumstance?
How would you reatach detached objects to a session when the same object has already been loaded into the session?
What state does a thread enter when it terminates its processing?
What is difference between object state and behavior?
Why a client should be multithreading? Explain.
What is a tasks priority and how is it used in scheduling?
what are RemoteObjects?