6
6
import java .util .List ;
7
7
8
8
import org .durcframework .expression .annotation .AnnoExprStore ;
9
+ import org .durcframework .expression .annotation .LikeDoubleField ;
10
+ import org .durcframework .expression .annotation .LikeLeftField ;
11
+ import org .durcframework .expression .annotation .LikeRightField ;
9
12
import org .durcframework .expression .annotation .ListField ;
10
13
import org .durcframework .expression .annotation .ValueField ;
11
14
import org .durcframework .expression .getter .ExpressionGetter ;
12
- import org .durcframework .expression .subexpression .ListExpression ;
13
- import org .durcframework .expression .subexpression .ValueExpression ;
14
- import org .springframework .util .StringUtils ;
15
+ import org .durcframework .expression .getter .impl .LikeDoubleExpressionGetter ;
16
+ import org .durcframework .expression .getter .impl .LikeLeftExpressionGetter ;
17
+ import org .durcframework .expression .getter .impl .LikeRightExpressionGetter ;
18
+ import org .durcframework .expression .getter .impl .ListExpressionGetter ;
19
+ import org .durcframework .expression .getter .impl .ValueExpressionGetter ;
15
20
16
21
/**
17
22
* 从bean中获取Expression
@@ -22,64 +27,13 @@ public class ExpressionBuilder {
22
27
23
28
private static final String PREFIX_GET = "get" ;
24
29
25
- // =============内部类=============
26
- // 构建list查询条件
27
- private static class ListExpressionGetter implements ExpressionGetter {
28
-
29
- @ Override
30
- public Expression buildExpression (Annotation annotation , String column ,
31
- Object value ) {
32
- if (value == null ) {
33
- return null ;
34
- }
35
- ListField listValueField = (ListField ) annotation ;
36
- String joint = listValueField .joint ();
37
- String equal = listValueField .equal ();
38
- String field = listValueField .column ();
39
- if (StringUtils .hasText (field )) {
40
- column = field ;
41
- }
42
- if (value .getClass ().isArray ()) {
43
- return new ListExpression (joint , column , equal ,
44
- (Object []) value );
45
- }
46
- if (value instanceof List ) {
47
- return new ListExpression (joint , column , equal , (List <?>) value );
48
- }
49
- return null ;
50
- }
51
- }
52
-
53
- // 构建单值查询条件工厂
54
- private static class ValueExpressionGetter implements ExpressionGetter {
55
-
56
- @ Override
57
- public Expression buildExpression (Annotation annotation , String column ,
58
- Object value ) {
59
- if (value == null ) {
60
- return null ;
61
- }
62
- if (value instanceof String ) {
63
- if (!StringUtils .hasText ((String ) value )) {
64
- return null ;
65
- }
66
- }
67
- ValueField valueField = (ValueField ) annotation ;
68
- String fieldColumn = valueField .column ();
69
- if (StringUtils .hasText (fieldColumn )) {
70
- column = fieldColumn ;
71
- }
72
- return new ValueExpression (valueField .joint (), column ,
73
- valueField .equal (), value );
74
- }
75
-
76
- }
77
-
30
+ // init
78
31
static {
79
- AnnoExprStore .addExpressionGetter (ListField .class ,
80
- new ListExpressionGetter ());
81
- AnnoExprStore .addExpressionGetter (ValueField .class ,
82
- new ValueExpressionGetter ());
32
+ AnnoExprStore .addExpressionGetter (ListField .class ,new ListExpressionGetter ());
33
+ AnnoExprStore .addExpressionGetter (ValueField .class ,new ValueExpressionGetter ());
34
+ AnnoExprStore .addExpressionGetter (LikeLeftField .class ,new LikeLeftExpressionGetter ());
35
+ AnnoExprStore .addExpressionGetter (LikeRightField .class ,new LikeRightExpressionGetter ());
36
+ AnnoExprStore .addExpressionGetter (LikeDoubleField .class ,new LikeDoubleExpressionGetter ());
83
37
}
84
38
85
39
/**
0 commit comments