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 are the uses of servlet
What is meant by a servlet?
How do we go with database connection and log4j integration in servlet?
Which interface should be implemented by all servlets?
How we can create war file in servlet?
Whether we can get deadlock situation in servlets?
Tell us something about servletconfig interface.
Can we use threads in Servlets?
What exactly is a servlet?
When Servlet is unloaded?
Where do you define dispatcherservlet?
Who is responsible to create the object of servlet?
How to get the path of servlet in the server?
Why doesn’t a servlet include main()?
How do you invoke a servelt?