Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 530 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 530 Bytes

Spring 3, Maven, MySql, Hibernate simple CRUD web application.

Basic Steps to create a Spring Web App with Persistence

  1. Setup the maven project and adjust the folder structure
  2. Add dependencies
  3. SetupDB
  4. Create model class – Add Annotations
  5. Create DAO components - @Repository
  6. Create Service components - @Service
  7. Create Controller component - @Controller
  8. Create View components – JSPs, JSTL
  9. Adjust Configurations (jdbc, spring xmls, hibernate, logs etc)
  10. Clean install your project and deploy it.