To download this file, please login or click here to register
Description:
Full Java Web application MVC using a Front Controller pattern. Contains patterns for one complete application feature called Customers. Customer has Id, First Name, and Last Name. Includes complete Customer Controller, Customer Model and Views (List, Add, Edit, Delete); also includes a complete Repository pattern for the data store. The Repository implementation is an In-memory data store that persists itself as an object store on the server's file system. You can provide a JDBC Repository implementation for a database store or an ORM Repository implementation for using an ORM such as Hibernate. Simply follow the patterns (Model, Controller, Views) to complete your application with its features. The UI styling is very minimal to allow you to provide your own; suggest finding CSS templates for the look and feel that you want. This is perfect for the beginner that does not want to use an MVC framework, or for a small company on a limited budget. The code will save you at least 160 hours or more of research and design work; the application architecture design is already done for you.