Light weight alternative to Hibernate? [closed]

2020-01-27 09:11发布

I have a single user java program that I would like to have store data in a light weight database such as Derby or Sqlite. I would like to use a data abstraction layer in my program. Hibernate appears to require a lot of configuration and is overkill for what I need. What are light weight alternatives to Hibernate?

14条回答
Root(大扎)
2楼-- · 2020-01-27 10:07

Kiteframework is also very light orm framework. It provides almost all db operation with minimal configurations.

http://deipakgarg.github.com/Kite-ORM/

Disclosure: I am the author of this project

查看更多
▲ chillily
3楼-- · 2020-01-27 10:08

My ORMLite library is one such alternative. It supports MySQL, Postgres, Microsoft SQL Server, H2, Derby, HSQLDB, and Sqlite, and can be easily extended to others. It uses annotations to configure classes, good Spring support, flexible query builder, etc..

查看更多
登录 后发表回答