Skip to content

Commit c2b1160

Browse files
committed
增强 Dao 接口的能力,更好的支持自定义 Entity
1 parent fb5eb69 commit c2b1160

File tree

4 files changed

+816
-424
lines changed

4 files changed

+816
-424
lines changed

src/org/nutz/dao/Dao.java

+122-38
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ public interface Dao extends Configurable {
108108
*/
109109
<T> T insert(T obj);
110110

111+
<T> T insert(Entity<T> entity, T obj);
112+
111113
/**
112114
* 将一个对象按FieldFilter过滤后,插入到一个数据源。
113115
* <p/>
@@ -121,7 +123,7 @@ public interface Dao extends Configurable {
121123
* @see org.nutz.dao.Dao#insert(Object)
122124
*/
123125
<T> T insert(T obj, FieldFilter filter);
124-
126+
125127
<T> T insert(T obj, String actived);
126128

127129
/**
@@ -147,6 +149,8 @@ public interface Dao extends Configurable {
147149
*/
148150
void insert(Class<?> classOfT, Chain chain);
149151

152+
void insert(Entity<?> entity, Chain chain);
153+
150154
/**
151155
* 快速插入一个对象。 对象的 '@Prev' 以及 '@Next' 在这个函数里不起作用。
152156
* <p>
@@ -166,7 +170,7 @@ public interface Dao extends Configurable {
166170
*
167171
*/
168172
<T> T fastInsert(T obj);
169-
173+
170174
<T> T fastInsert(T obj, boolean detectAllColumns);
171175

172176
/**
@@ -271,6 +275,20 @@ public interface Dao extends Configurable {
271275

272276
int update(Object obj, Condition cnd);
273277

278+
int update(Entity<?> entity, Object obj);
279+
280+
int update(Entity<?> entity, Object obj, String actived);
281+
282+
int update(Entity<?> entity, Object obj, String actived, String locked, boolean ignoreNull);
283+
284+
int update(Entity<?> entity, Object obj, FieldFilter fieldFilter);
285+
286+
int update(Entity<?> entity, Object obj, FieldFilter fieldFilter, Condition cnd);
287+
288+
int update(Entity<?> entity, Object obj, Condition cnd);
289+
290+
int update(Entity<?> entity, Chain chain, Condition cnd);
291+
274292
/**
275293
* 更新一个对象,并且忽略所有 null 字段。
276294
* <p>
@@ -394,6 +412,8 @@ public interface Dao extends Configurable {
394412
*/
395413
<T> List<T> query(Class<T> classOfT, Condition cnd, Pager pager);
396414

415+
<T> List<T> query(Entity<T> entity, Condition cnd, Pager pager);
416+
397417
/**
398418
* 查询一组对象。你可以为这次查询设定条件
399419
*
@@ -473,6 +493,8 @@ public interface Dao extends Configurable {
473493
*/
474494
<T> int each(Class<T> classOfT, Condition cnd, Pager pager, Each<T> callback);
475495

496+
<T> int each(Entity<T> entity, Condition cnd, Pager pager, Each<T> callback);
497+
476498
/**
477499
* 对一组对象进行迭代,这个接口函数非常适用于很大的数据量的集合,因为你不可能把他们都读到内存里
478500
*
@@ -554,6 +576,8 @@ public interface Dao extends Configurable {
554576
*/
555577
int delete(Class<?> classOfT, long id);
556578

579+
int delete(Entity<?> entity, long id);
580+
557581
/**
558582
* 根据对象 Name 删除一个对象。它只会删除这个对象,关联对象不会被删除。
559583
* <p>
@@ -571,6 +595,8 @@ public interface Dao extends Configurable {
571595
*/
572596
int delete(Class<?> classOfT, String name);
573597

598+
int delete(Entity<?> entity, String name);
599+
574600
/**
575601
* 根据复合主键,删除一个对象。该对象必须声明 '@PK',并且,给定的参数顺序 必须同 '@PK' 中声明的顺序一致,否则会产生不可预知的错误。
576602
*
@@ -651,6 +677,8 @@ public interface Dao extends Configurable {
651677
*/
652678
<T> T fetch(Class<T> classOfT, long id);
653679

680+
<T> T fetch(Entity<T> entity, long id);
681+
654682
/**
655683
* 根据对象 Name 获取一个对象。它只会获取这个对象,关联对象不会被获取。
656684
* <p>
@@ -666,6 +694,8 @@ public interface Dao extends Configurable {
666694
*/
667695
<T> T fetch(Class<T> classOfT, String name);
668696

697+
<T> T fetch(Entity<T> entity, String name);
698+
669699
/**
670700
* 根据复合主键,获取一个对象。该对象必须声明 '@PK',并且,给定的参数顺序 必须同 '@PK' 中声明的顺序一致,否则会产生不可预知的错误。
671701
*
@@ -675,6 +705,8 @@ public interface Dao extends Configurable {
675705
*/
676706
<T> T fetchx(Class<T> classOfT, Object... pks);
677707

708+
<T> T fetchx(Entity<T> entity, Object... pks);
709+
678710
/**
679711
* 根据 WHERE 条件获取一个对象。如果有多个对象符合条件,将只获取 ResultSet 第一个记录
680712
*
@@ -689,6 +721,8 @@ public interface Dao extends Configurable {
689721
*/
690722
<T> T fetch(Class<T> classOfT, Condition cnd);
691723

724+
<T> T fetch(Entity<T> entity, Condition cnd);
725+
692726
/**
693727
* 根据条件获取一个 Record 对象
694728
*
@@ -777,6 +811,8 @@ public interface Dao extends Configurable {
777811
*/
778812
int clear(Class<?> classOfT, Condition cnd);
779813

814+
int clear(Entity<?> entity, Condition cnd);
815+
780816
/**
781817
* 根据一个 WHERE 条件,清除一组记录
782818
*
@@ -848,6 +884,8 @@ public interface Dao extends Configurable {
848884
*/
849885
int count(Class<?> classOfT, Condition cnd);
850886

887+
int count(Entity<?> entity, Condition cnd);
888+
851889
/**
852890
* 计算某个对象在数据库中有多少条记录
853891
*
@@ -857,6 +895,8 @@ public interface Dao extends Configurable {
857895
*/
858896
int count(Class<?> classOfT);
859897

898+
int count(Entity<?> entity);
899+
860900
/**
861901
* 根据条件,计算某个数据表或视图中有多少条记录
862902
*
@@ -897,7 +937,7 @@ public interface Dao extends Configurable {
897937
* @return 计算结果
898938
*/
899939
int func(Class<?> classOfT, String funcName, String fieldName);
900-
940+
901941
/**
902942
* 对某一个对象字段,进行计算。
903943
*
@@ -1015,6 +1055,8 @@ public interface Dao extends Configurable {
10151055
*/
10161056
boolean exists(Class<?> classOfT);
10171057

1058+
boolean exists(Entity<?> entity);
1059+
10181060
/**
10191061
* @param tableName
10201062
* 表名
@@ -1032,6 +1074,7 @@ public interface Dao extends Configurable {
10321074
* @return 实体对象
10331075
*/
10341076
<T> Entity<T> create(Class<T> classOfT, boolean dropIfExists);
1077+
10351078
/**
10361079
* 根据一个实体的配置信息为其创建一张表
10371080
*
@@ -1042,8 +1085,10 @@ public interface Dao extends Configurable {
10421085
* @return 实体对象
10431086
*/
10441087
<T> Entity<T> create(Entity<T> en, boolean dropIfExists);
1088+
10451089
/**
10461090
* 根据一个实体的配置信息为其创建一张表
1091+
*
10471092
* @param tableName
10481093
* 表名
10491094
* @param map
@@ -1053,8 +1098,10 @@ public interface Dao extends Configurable {
10531098
* @return 实体对象
10541099
*/
10551100
<T extends Map<String, ?>> Entity<T> create(String tableName, T map, boolean dropIfExists);
1101+
10561102
/**
10571103
* 根据一个实体的配置信息为其创建一张表, 其中表名从map.get(".table")获取
1104+
*
10581105
* @param map
10591106
* 实体描述,参考文档中的非Pojo操作
10601107
* @param dropIfExists
@@ -1130,7 +1177,7 @@ public interface Dao extends Configurable {
11301177
* @return 原对象
11311178
*/
11321179
<T> T insertOrUpdate(T t);
1133-
1180+
11341181
/**
11351182
* 根据对象的主键(@Id/@Name/@Pk)先查询, 如果存在就更新, 不存在就插入
11361183
*
@@ -1161,28 +1208,42 @@ public interface Dao extends Configurable {
11611208
*/
11621209
int updateAndIncrIfMatch(Object obj, FieldFilter fieldFilter, String fieldName);
11631210

1211+
int updateAndIncrIfMatch(Entity<?> entity,
1212+
Object obj,
1213+
FieldFilter fieldFilter,
1214+
String fieldName);
1215+
11641216
/**
11651217
* 基于版本的更新,版本不一样无法更新到数据
1166-
* @param obj 需要更新的对象, 必须有version属性
1218+
*
1219+
* @param obj
1220+
* 需要更新的对象, 必须有version属性
11671221
* @return 若更新成功,大于0, 否则小于0
11681222
*/
11691223
int updateWithVersion(Object obj);
1170-
1224+
11711225
/**
11721226
* 基于版本的更新,版本不一样无法更新到数据
1173-
* @param obj 需要更新的对象, 必须有version属性
1174-
* @param fieldFilter 需要过滤的字段设置
1227+
*
1228+
* @param obj
1229+
* 需要更新的对象, 必须有version属性
1230+
* @param fieldFilter
1231+
* 需要过滤的字段设置
11751232
* @return 若更新成功,大于0, 否则小于0
11761233
*/
11771234
int updateWithVersion(Object obj, FieldFilter fieldFilter);
1178-
1235+
11791236
/**
11801237
* 根据查询条件获取一个对象.<b>注意: 条件语句需要加上表名!!!</b>
11811238
* <p/>
11821239
* 这个方法是让@One关联的属性,通过left join一次性取出. 与fetch+fetchLinks是等价的
1183-
* @param classOfT 实体类
1184-
* @param regex 需要过滤的关联属性,可以是null,取出全部关联属性.
1185-
* @param cnd 查询条件,必须带表名!!!
1240+
*
1241+
* @param classOfT
1242+
* 实体类
1243+
* @param regex
1244+
* 需要过滤的关联属性,可以是null,取出全部关联属性.
1245+
* @param cnd
1246+
* 查询条件,必须带表名!!!
11861247
* @return 实体对象,符合regex的关联属性也会取出
11871248
*/
11881249
<T> T fetchByJoin(Class<T> classOfT, String regex, Condition cnd);
@@ -1193,67 +1254,90 @@ public interface Dao extends Configurable {
11931254
* 你的对象必须在某个字段声明了注解 '@Id',否则本操作会抛出一个运行时异常
11941255
* <p/>
11951256
* 这个方法是让@One关联的属性,通过left join一次性取出. 与fetch+fetchLinks是等价的
1196-
* @param classOfT 实体类
1197-
* @param regex 需要取出的关联属性,是正则表达式哦,匹配的是Java属性名
1198-
* @param id 对象id
1257+
*
1258+
* @param classOfT
1259+
* 实体类
1260+
* @param regex
1261+
* 需要取出的关联属性,是正则表达式哦,匹配的是Java属性名
1262+
* @param id
1263+
* 对象id
11991264
* @return 实体
12001265
*/
12011266
<T> T fetchByJoin(Class<T> classOfT, String regex, long id);
1202-
1267+
12031268
/**
12041269
* 根据对象 NAME 获取一个对象。它只会获取这个对象,关联对象不会被获取。
12051270
* <p>
12061271
* 你的对象必须在某个字段声明了注解 '@Name',否则本操作会抛出一个运行时异常
12071272
* <p/>
12081273
* 这个方法是让@One关联的属性,通过left join一次性取出. 与fetch+fetchLinks是等价的
12091274
*
1210-
* @param classOfT 实体类
1211-
* @param regex 需要取出的关联属性,是正则表达式哦,匹配的是Java属性名
1212-
* @param name 对象name
1275+
* @param classOfT
1276+
* 实体类
1277+
* @param regex
1278+
* 需要取出的关联属性,是正则表达式哦,匹配的是Java属性名
1279+
* @param name
1280+
* 对象name
12131281
* @return 实体
12141282
*/
12151283
<T> T fetchByJoin(Class<T> classOfT, String regex, String name);
1216-
1284+
12171285
/**
12181286
* 根据查询条件获取所有对象.<b>注意: 条件语句需要加上主表名或关联属性的JAVA属性名!!!</b>
12191287
* <p/>
12201288
* 这个方法是让@One关联的属性,通过left join一次性取出. 与query+fetchLinks是等价的
1221-
* @param classOfT 实体类
1222-
* @param regex 需要过滤的关联属性,可以是null,取出全部关联属性.
1223-
* @param cnd 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
1289+
*
1290+
* @param classOfT
1291+
* 实体类
1292+
* @param regex
1293+
* 需要过滤的关联属性,可以是null,取出全部关联属性.
1294+
* @param cnd
1295+
* 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
12241296
* @return 实体对象的列表,符合regex的关联属性也会取出
12251297
*/
12261298
<T> List<T> queryByJoin(Class<T> classOfT, String regex, Condition cnd);
1227-
1299+
12281300
<T> T fetchByJoin(Class<T> classOfT, String regex, Condition cnd, Map<String, Condition> cnds);
1229-
1301+
12301302
/**
12311303
* 根据查询条件获取分页对象.<b>注意: 条件语句需要加上主表名或关联属性的JAVA属性名!!!</b>
12321304
* <p/>
12331305
* 这个方法是让@One关联的属性,通过left join一次性取出. 与query+fetchLinks是等价的
1234-
* @param classOfT 实体类
1235-
* @param regex 需要过滤的关联属性,可以是null,取出全部关联属性.
1236-
* @param cnd 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
1237-
* @param pager 分页对象 <b>注意: 分页不要在cnd中传入!</b>
1306+
*
1307+
* @param classOfT
1308+
* 实体类
1309+
* @param regex
1310+
* 需要过滤的关联属性,可以是null,取出全部关联属性.
1311+
* @param cnd
1312+
* 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
1313+
* @param pager
1314+
* 分页对象 <b>注意: 分页不要在cnd中传入!</b>
12381315
* @return 实体对象的列表,符合regex的关联属性也会取出
12391316
*/
12401317
<T> List<T> queryByJoin(Class<T> classOfT, String regex, Condition cnd, Pager pager);
1241-
12421318

1243-
<T> List<T> queryByJoin(Class<T> classOfT, String regex, Condition cnd, Pager pager, Map<String, Condition> cnds);
1244-
1319+
<T> List<T> queryByJoin(Class<T> classOfT,
1320+
String regex,
1321+
Condition cnd,
1322+
Pager pager,
1323+
Map<String, Condition> cnds);
1324+
12451325
/**
12461326
* 根据查询条件获取分页对象.<b>注意: 条件语句需要加上主表名或关联属性的JAVA属性名!!!</b>
1247-
* @param classOfT 实体类
1248-
* @param regex 需要过滤的关联属性,可以是null,取出全部关联属性.
1249-
* @param cnd 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
1327+
*
1328+
* @param classOfT
1329+
* 实体类
1330+
* @param regex
1331+
* 需要过滤的关联属性,可以是null,取出全部关联属性.
1332+
* @param cnd
1333+
* 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
12501334
* @return 数量
12511335
*/
12521336
<T> int countByJoin(Class<T> classOfT, String regex, Condition cnd);
1253-
1337+
12541338
EntityHolder getEntityHolder();
1255-
1339+
12561340
void truncate(Class<?> klass);
1257-
1341+
12581342
void truncate(String tableName);
12591343
}

0 commit comments

Comments
 (0)