Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
fb618e70
Commit
fb618e70
authored
Dec 12, 2024
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
身份证识别
parent
56e8ab24
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
TypeHelper.java
...src/main/java/com/yanzuoguang/util/helper/TypeHelper.java
+2
-2
AspectWeb.java
...ud/src/main/java/com/yanzuoguang/cloud/aop/AspectWeb.java
+2
-2
No files found.
yzg-util-base/src/main/java/com/yanzuoguang/util/helper/TypeHelper.java
View file @
fb618e70
...
@@ -68,12 +68,12 @@ public class TypeHelper {
...
@@ -68,12 +68,12 @@ public class TypeHelper {
* @param type
* @param type
* @return
* @return
*/
*/
public
static
Class
getClass
(
Type
type
)
{
public
static
Class
<?>
getClass
(
Type
type
)
{
if
(
type
instanceof
ParameterizedType
)
{
if
(
type
instanceof
ParameterizedType
)
{
Type
rawType
=
((
ParameterizedType
)
type
).
getRawType
();
Type
rawType
=
((
ParameterizedType
)
type
).
getRawType
();
return
getClass
(
rawType
);
return
getClass
(
rawType
);
}
else
if
(
type
instanceof
Class
)
{
}
else
if
(
type
instanceof
Class
)
{
return
(
Class
)
type
;
return
(
Class
<?>
)
type
;
}
}
return
null
;
return
null
;
}
}
...
...
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/AspectWeb.java
View file @
fb618e70
...
@@ -110,8 +110,8 @@ public class AspectWeb {
...
@@ -110,8 +110,8 @@ public class AspectWeb {
ex
=
e
;
ex
=
e
;
result
=
ExceptionHelper
.
getError
(
e
);
result
=
ExceptionHelper
.
getError
(
e
);
Type
returnType
=
getReturnType
(
joinPoint
);
Type
returnType
=
getReturnType
(
joinPoint
);
Class
returnClass
=
TypeHelper
.
getClass
(
returnType
);
Class
<?>
returnClass
=
TypeHelper
.
getClass
(
returnType
);
if
(
TypeHelper
.
isClass
(
returnClass
,
ResponseResult
.
class
))
{
if
(
returnClass
!=
null
&&
TypeHelper
.
isClass
(
returnClass
,
ResponseResult
.
class
))
{
return
result
;
return
result
;
}
else
if
(
TypeHelper
.
isSubType
(
returnType
,
ResponseResult
.
class
))
{
}
else
if
(
TypeHelper
.
isSubType
(
returnType
,
ResponseResult
.
class
))
{
return
JsonHelper
.
to
(
result
,
returnClass
);
return
JsonHelper
.
to
(
result
,
returnClass
);
...
...
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