Java Servlet - To Servlet or not to Servlet ?

Im doing on this auction system using Java.

A few question that i ponder:

Usually, for the browse function, do people usually send to servlet then dislay the book categories? (hyperlink --> BrowseServlet --> Browse.jsp)

Or just display the categories in the JSP itself ?

Second, i have a search function, do ppl post the input to servlet, then process and post to another search result page (search.jsp --> SearchServlet --> searchresult.jsp) ?

or search.jsp --> searchresult.jsp ?

Kinda confused here.

Thanks.

[575 byte] By [vzenta] at [2007-11-26 23:21:49]
# 1
It depends on the design pattern u follow....:) MVC dsgn states that u should keep view part apart (jsp) from ur controller (servlet ) and model (BM)regardsShanu
mshanua at 2007-7-10 14:26:23 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...