ORM frameworks used for insert only / query only apps

后端 未结 4 1902
傲寒
傲寒 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:35

    Hibernate is an Object Relational Mapping. If they only do bulk inserts and reporting on raw data streams, maybe they don't need any object representation. Hibernate will come in handy if they need some sort of object representation of their data.

提交回复
热议问题