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 |
Can substring create new object?
What is the difference between a synchronized method and a synchronized block?
Why do we need autoboxing in java?
int a=1; float b=1.0; System.out.println(a==b);
13 Answers CTS, Honeywell, McAfee,
How do you input a string in java?
What is bubble sorting in java?
How many bits are used to represent unicodde,ASCII,UTF-16 and UTF-8 characters?
why abstract class does not have object creation
what is meant wrapper classes?
What are 3 boolean operators?
How do you take thread dump in java?
Can you call a constructor within a constructor?