I'm about to start developing a dynamic web application with Java (i.e., Servlets and JSP).
Obviously I will need to keep a database with all sorts of information (Users, etc.). My question is - is there a good library for saving/storing/retrieving from a database for this kind of application?
I don't mean JDBC, which is used to send queries and parse results, but some sort of abstraction for saving and loading my object to/from the database.
Currently, I am trying to develop some sort of generic classes for handling of these cases in django style (i.e., classes have a save()
method), but since these are generic, I suppose something ought to exist already.