Replacing a full ORM (JPA/Hibernate) by a lighter solution : Recommended patterns for load/save?
问题 I'm developing a new Java web application and I'm exploring new ways (new for me!) to persist the data. I mostly have experience with JPA & Hibernate but, except for simple cases, I think this kind of full ORM can become quite complex. Plus, I don't like working with them that much. I'm looking for a new solution, probably closer to SQL. The solutions I'm currently investigating : MyBatis JOOQ Plain SQL/JDBC, potentially with DbUtils or some other basic utility libraries. But there are two