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
What do you mean by singlethreadmodel interface?
Which event is fired at the time of session creation and destroy?
What is the servletconfig object?
How to get the IP address of client in servlet?
What is Client-Server Computing?
When a servlet accepts a call from a client, it receives two objects. What are they?
What are the ways to handle multi-threading in servlets?
What is ServletContext object?
What’s the difference between forward() and sendredirect() methods?
What are the phases of servlet life cycle?
What's the servlet interface?
What is the use of welcome-file-list?
Define the servlet mapping.
explain the advantages of servlet life cycle?
Explain mvc pattern.