Working with jpa and dao
JPA implementation patterns: Data Access Objects
The Generic DAO pattern in Java with Spring 3 and JPA 2.0
Generics example: the Data Access Object
JPA Tutorial 1 - Getting Started
Created 11/09-2012 by Michael Bornholdt Nielsen
MVC is dead, it's time to MOVE on.
MVC is dead, it's time to MOVE on.
MVC is a phenomenal idea. You have models, which are nice self-contained bits of state, views which are nice self-contained bits of UI, and controllers which are nice self-contained bits of …
What?
I'm certainly not the first person to notice this, but the problem with MVC as given is that you end up stuffing too much code into your controllers, because you don't know where else to put it.
To fix this I've been using a new pattern: MOVE. Models, Operations, Views, and Events.
Tags : Design pattern
Created 03/07-2012 by Michael Bornholdt Nielsen