views:

82

answers:

1

I want do a web-application that consists of the following pages: Main, Inventory, Shopping, Login, and Report. All will be JSPs and all will be called using the MVC pattern where one of two servlets uses the RequestDispatcher to call the appropriate JSP. This uses server-side forwarding and not redirection.

I have ER diagram: http://tinypic.com/r/155oxlt/5

if u can guide I can do it successfully.

+1  A: 

Start with the tutorials at Coreservlets.com:

The first one brings you step by step to a MVC webapplication. The second one adds security, filters, taglibs, JDBC and even Spring on top of that.

BalusC