why business logic written using servlets not in jsp. Jsp
used for presentation purpose. serlvet used for coding
business logic and controller logic. Reason for using
servlets in business logic.
Answer Posted / nishant
Actually the main reason behind this when the servlet is
used for both presentation & business logic, the tight
coupling between presentation & business logic creates the
problem to the reusablity, because sometime change in
business logic tends to change in presentation logic. Apart
from that the tags & HTML like enviroment makes the webpage
more dynamic.
Now if we are using jsp page for business logic then
scriptlet will be more inside the JSP page which leads to
heavy maintaince cost. The business techies call it as
MODEL1 Architecture.
The seperate declaration of servlet for business unit will
avoid all above.Say MODEL2 Architecture.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
How to get the server information in a servlet?
How httpservlet is different from the genericservlet?
What is session tracking?
How will two or three servlets interact or communicate with each other?
Tell us something about servletconfig interface.
What is servlet attributes and their scope?
If my browser does not support cookie, and my server sends a cookie instance what will happen?
What is servlet interface?
Why doesn’t a servlet include main()? How does it work?
What are the different methods involved in the process of session management in servlets?
Explain the architechure of a servlet?
What are the new features added to servlet 2.5?
Explain the custom jsp tags and the beans.
Why do we need a constructor in a servlet if we use the init method?
What are the ways to handle multi-threading in servlets?