what is difference between requestprocessor and request
dispatcher?
Answers were Sorted based on User's Feedback
Answer / mahesh bolla
Request processor is used to process each and every
request. this is similar to the Filter concept. Login kind
of validation will be done by using request processor.
Where as request dispatcher will dispatch(transfer) the
request from one page to other. i.e. moving from one page
to other with out user Interacton
| Is This Answer Correct ? | 33 Yes | 5 No |
Answer / srinivasa
Request processor process the incomming request and
identifies which action needs to be executed.
Request dispatcher is an interface used to forwad or
include the request
| Is This Answer Correct ? | 5 Yes | 2 No |
How many functional interfaces does java 8 have?
What are access modifiers in Java ?
How GC (Garbage Collector) knows the objects reference is unused.Whether GC removes the unused object Parmanently or it maintains something.
what is an objects lock and which objects have locks? : Java thread
What is the purpose of final keyword and when to use it?
how to create daemon thread in java?
What is the parse method in java?
When parseint method can be used?
Can we declare a class as abstract without having any abstract method?
What is hash code collision?
Can an unreachable object become reachable again?
What is finally block?