Commit fb618e70 authored by yanzg's avatar yanzg

身份证识别

parent 56e8ab24
...@@ -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;
} }
......
...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment