I need new design patterns in JPA/ORM instead of POJO/JDBC/DAO patterns.
Is there any recommended link?
RGDS
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In the examples I’ve seen, JPA doesn’t fundamentally change design patterns for Java EE, it’s a standard implementation of persistence. You can (should, depending on your constraints?) still hide the persistence implementation behind a DAO layer – maybe the transition is a good test of whether your existing DAOs are doing a good job of hiding those implementation details.
There’s an tutorial that does that on developerworks. There’s also a discussion about whether JPA killed the DAOs on infoq that you might find of interest.