5

ではJPA/Hibernate、タイプセーフなクエリを記述し、クエリ述語を一度に1ステップずつ蓄積できます。にはこれに相当するものはないと思いますが、クエリのような基準を記述できるようにする、上のレイヤーを提供するMyBatis抽象化フレームワーク(のような)はありますか。条件APIが必要な私の基本的な理由は、クエリを作成する必要があることです。クエリの各述語は個別のロジックから取得されます。QueryDSLMyBatis

4

2 に答える 2

2

MyBatis Generator seems pretty unmaintained to me. Also need to generate classes from existing DB during build is quiet cumbersome.

Isn't MyBatis SQL Builder Class a better solution?

于 2014-01-09T11:18:51.133 に答える
1

You can use MBG (MyBatis Generator) with example classes.

Though I doubt that the example classes are as powerful as Hibernate's Criteria Queries, they should suit well your task of constructing queries.

于 2012-10-18T00:54:59.330 に答える