ORM frameworks used for insert only / query only apps

后端 未结 4 1898
傲寒
傲寒 2021-01-23 13:56

I\'ve been using Hibernate for years and never have a problem with it, but just realized most of my work involved a CRUD approach, where I needed data to stay persisted and modi

4条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-23 14:26

    sormula is a CRUD-ready ORM. You can mix JDBC with sormula. It does not do bulk inserts but it does have insertAll(java.util.Collection) to insert a collection of objects.

提交回复
热议问题