Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
guns-vip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
guns-vip
Commits
37175937
Commit
37175937
authored
Jul 01, 2017
by
fsn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
比较对象增加一个方法
parent
e67926e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
src/main/java/com/stylefeng/guns/core/util/Contrast.java
+62
-0
No files found.
src/main/java/com/stylefeng/guns/core/util/Contrast.java
View file @
37175937
...
@@ -114,6 +114,68 @@ public class Contrast {
...
@@ -114,6 +114,68 @@ public class Contrast {
}
}
/**
/**
* 比较两个对象pojo1和pojo2,并输出不一致信息
*
* @author stylefeng
* @Date 2017/5/9 19:34
*/
public
static
String
contrastObjByName
(
String
dictClass
,
String
key
,
Object
pojo1
,
Map
<
String
,
String
>
pojo2
)
{
AbstractDictMap
dictMap
=
DictMapFactory
.
createDictMap
(
dictClass
);
String
str
=
parseMutiKey
(
dictMap
,
key
,
pojo2
)
+
separator
;
try
{
Class
clazz
=
pojo1
.
getClass
();
Field
[]
fields
=
pojo1
.
getClass
().
getDeclaredFields
();
int
i
=
1
;
for
(
Field
field
:
fields
)
{
if
(
"serialVersionUID"
.
equals
(
field
.
getName
()))
{
continue
;
}
String
prefix
=
"get"
;
int
prefixLength
=
3
;
if
(
field
.
getType
().
getName
().
equals
(
"java.lang.Boolean"
)){
prefix
=
"is"
;
prefixLength
=
2
;
}
Method
getMethod
=
null
;
try
{
getMethod
=
clazz
.
getDeclaredMethod
(
prefix
+
StrKit
.
firstCharToUpperCase
(
field
.
getName
()));
}
catch
(
java
.
lang
.
NoSuchMethodException
e
){
System
.
err
.
println
(
"this className:"
+
clazz
.
getName
()
+
" is not methodName: "
+
e
.
getMessage
());
continue
;
}
Object
o1
=
getMethod
.
invoke
(
pojo1
);
Object
o2
=
pojo2
.
get
(
StrKit
.
firstCharToLowerCase
(
getMethod
.
getName
().
substring
(
prefixLength
)));
if
(
o1
==
null
||
o2
==
null
)
{
continue
;
}
if
(
o1
instanceof
Date
)
{
o1
=
DateUtil
.
getDay
((
Date
)
o1
);
}
else
if
(
o1
instanceof
Integer
)
{
o2
=
Integer
.
parseInt
(
o2
.
toString
());
}
if
(!
o1
.
toString
().
equals
(
o2
.
toString
()))
{
if
(
i
!=
1
)
{
str
+=
separator
;
}
String
fieldName
=
dictMap
.
get
(
field
.
getName
());
String
fieldWarpperMethodName
=
dictMap
.
getFieldWarpperMethodName
(
field
.
getName
());
if
(
fieldWarpperMethodName
!=
null
)
{
Object
o1Warpper
=
DictFieldWarpperFactory
.
createFieldWarpper
(
o1
,
fieldWarpperMethodName
);
Object
o2Warpper
=
DictFieldWarpperFactory
.
createFieldWarpper
(
o2
,
fieldWarpperMethodName
);
str
+=
"字段名称:"
+
fieldName
+
",旧值:"
+
o1Warpper
+
",新值:"
+
o2Warpper
;
}
else
{
str
+=
"字段名称:"
+
fieldName
+
",旧值:"
+
o1
+
",新值:"
+
o2
;
}
i
++;
}
}
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
return
str
;
}
/**
* 解析多个key(逗号隔开的)
* 解析多个key(逗号隔开的)
*
*
* @author stylefeng
* @author stylefeng
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment