I was wondering if there exists such thing as Java SE MVC framework. I’ve been confused about Hibernate and Spring, these 2 framworks are for Java EE web applications and i like to program in Java SE (Core) and was wondering if there exists MVC framework for it or if anyone can give a tutorial link how to build one in Java SE.
Share
Hibernate is an ORM Framework that maps objects to tables in a relational database. From the Hibernate Documentation:
Spring MVC is a request-based framework that adheres to the MVC architecture. You can read more about it in the Spring MVC Documentation. I’d also recommend checking out the Spring in Action, 3rd Edition book to learn about the Spring Framework and Spring MVC.