Can we have more than one action servlet?
Answers were Sorted based on User's Feedback
Answer / manjul
yes you can have and if you specify different url patter
like
*.do for one action servlet
*.abc for other action servlet
in your web.xml file
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / saraswathi
yes,we can use 'n' number of ActionServlets in struts
application by the help of extending ActionServlet
org.apache.struts.action.ActionServlet
| Is This Answer Correct ? | 0 Yes | 0 No |
How we set Bean Id when we are creating web application using SpringMVC and Hibernet Integration
can we write implementation for a method with in another method?
What is the difference between the ‘font’ and ‘fontmetrics’ class?
what is the diffrence between banking and insurance domain?
what is the use of Object Factories?
how we can implement interface in jsp ?
When is the best time to validate input?
What is the initial state, When a thread is created and started?
1) what is synchronization? 2)write a program to show synchronization ? 3) what is orm? 4) what is getTemplete method and hw u use it? 5)write a singleton program ? 6) what is IOC concept & explain it? 7) methods of spring? 8)explain spring framework? 9)what are the oops concept? 10)what r the diff types of exception? 11)what is AOP(assepct oriented programing)? 12)jsp life cycle? 13)servlet life cycle? 14)how to u catch ur exception when executing a query in hibernate? 15)write javascript function? 16)write a querry to join two tables? 17)wap to show inheritance and use of interface? 18)explain the project? 19)in spring bean class uses singleton or prototype? 20)Explain prototype?
what is the difference between System.out.println and out.println in java
What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }
Write a singleton program?