what is difference between front controller and action servlet?
Answers were Sorted based on User's Feedback
Answer / harikrishna
In struts application Action servlet acts as front
controller.
| Is This Answer Correct ? | 7 Yes | 0 No |
FrontController: A special web resource of web applications
that traps the request comming to other web applications to
execute common and global pre request processing logic by
username and password is called FrontController.
Servlet acting as FrontController, then it is called front
controller serlet . If JSP is acting as front controller
then it is called front controller of jsp.
| Is This Answer Correct ? | 4 Yes | 0 No |
What is an association?
How do you use compareto method?
System.out.println(101/14) what is the output? a)6 b)14 c)7.14 d)0
Why does java not allow multiple public classes in a java file ?
java Api provided try catch finally ,try catch(its ok) but why try finally and exception occured at try then how the flow is?
Explain about object oriented programming and its features?
Why vector class is used?
What is double word?
interface X{ void m1(); void m2(); } class Child2 extends Object implements X { public void m1(){ System.out.println("Child2 M1"); } public void m2(){ System.out.println("Child2 M2"); } } public class ParentChildInfterfaceDemo { public static void main(String[] args){ X x = new Child2(); X x1 = new Child2(); x.m1(); x.m2(); x.equals(x1); } } Will the above code work? If yes? Can you please explain why the code x.equals(x1) will work as the equals method is called on interface reference vaiable?
What are the advantages and disadvantages of reference counting in garbage collection?
What is meant by Java interpreter?
write a program to create an arraylist and listeterator.and value should be enter through keyboard.