What is the simplest way to use database persistence in Java? I know, many frameworks exists around the Internet, but it could be fun to learn how to develop a persistence layer by myself and its design patterns. Where to start? Books, websites, how-tos, code-examples, etc.
closed as not constructive by Lukas Eder, Tonny Madsen, Dante is not a Geek, Don Roby, Ram kiran Dec 10 '12 at 3:02
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I would start with Sun's Java Persistence API (JPA). Here's a good starter article. |
||||
|
|
Noooo! Don't be silly. Use JDO or JPA. The first one is a generic object persistence API, the other one is aimed at RDBMS-es only. They have various implementations, e.g. for JPA there is EclipseLink (formerly Oracle TopLink), which is also the reference implementation for JPA 2, and Hibernate, which is also very popular. You really, really don't want to make your own. If you want to work in this area, then contribute to one of the existing projects instead. |
|||
|
|
|
Another library that's useful is jDBI. It takes advantage of generics to have nice binding + mapping capabilities while still being fairly close to JDBC. iBATIS is supposed to have similar characteristics though not so lightweight, and it's been around for much longer. |
|||
|
|
|
The simplist way is just to use jdbc. Java has a nice tutorial here. As far as abstraction layers go. Hibernate, in my experience, is pretty standard, and worth learning. Programming your own can be a fun exercise, but I can't think of a good reason not to use hibernate. |
|||||||
|
|
Start by looking at features and source code of pre-existing ones. Here are a couple (just to name a few in alphabetical order)
And soon, you can edit this answer and add your own framework! |
||||
|
|
|
At the lowest level you'll need to talk to a database so you'll be using JDBC. Since you're designed your own framework you're own your own after that. Have a look an JPA and Hibernate to get some ideas and then experiment away. |
|||
|
|
|
In addition to previous responses - check the DAO (Data Access Object) pattern - it reflects how the code for data access should be organized. |
|||
|
|
|
I found this book to be particularly useful. This is a good one too. Having created one myself I agree - it is a lot of fun, and a lot of work too. It all depends on your objectives. |
||||
|
|
|
If you are looking for a learning practice then try to get a copy of Craig Larman's Applying UML and Patterns.
There Larman presents a chapter on lightweight database persistence mapper design. Unlike Hibernate, which is based on an unobtrusive persistence model, he presents an obtrusive framework in which domain objects has to be extended from a PersistentObject. We also have to write mapper classes for each persistent domain class. Its some sort of ActiveRecord pattern without any codegeneration concept. |
||||
|
|
|
This book (Patterns of Enterprise Application Architecture) seems very good at first sight. I have look into it, and design patterns for developing a persistence engine are very comprehensive. It tells why, when and how to use them. |
|||
|
|
