I am going to start developing a dynamic web application with Java (i.e. servlets and JSPs).
Obviously, I will need to store a database with all kinds of information (Users, etc.). My question is: is there a good library to save / store / retrieve from the database for such an application?
I do not mean JDBC, which is used to send queries and parsing results, but some kind of abstraction for saving and loading my object to / from the database.
I'm currently trying to develop some kind of common classes to handle these cases in django style (i.e. classes have a save() method), but since they are common, I suppose something must already exist.
source share