Answer Posted / sivakumaran kathamutthu(siva)
Servlet is server side java programming for java web
application which will enrich with business logic where jsp
provides static part of java web application which doesnt
has business logic(if we need we can have bussiness logic
there but its poor archetecture) but use for display view
part of webapplication.
A servelt class can be created in two way
1) extending the GenricServlet
2) HttpServelt
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a void method?
What do you mean by local variable and instance variable?
What are the Class Libraries ?
Can you declare a private method as static?
What are the differences between forwarding () method and sendredirect() methods?
Make a data structure and implement an algorithm to print all the files in a directory. (The root directory can have sub-directories too.)
Which java collection does not allow null?
What are void methods?
What is the difference between scrollbar and scrollpane?
Is set ordered?
Explain the selection sort algorithm and state its time complexity?
What is the purpose of sizeof operator?
How does java pattern compile work?
How strings are created in java?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?