Object oriented database

后端 未结 3 1949
予麋鹿
予麋鹿 2021-01-28 06:25

I don\'t know if this is the right title for this question. Anyway, recently I have heard about that you could make life easier when creating database. By in which you use objec

3条回答
  •  感动是毒
    2021-01-28 06:44

    It sounds like you are talking about JPA. You simply annotate your objects, and the database is setup according to the objects for you. The most used JPA implementation is Hibernate, and is very quick way of writing database enabled Java applications.

    If you want more control over the database structure, you can do that via the annotations.

    For more information on hibernate, check out http://www.hibernate.org/.

提交回复
热议问题