Commit fb618e70 authored by yanzg's avatar yanzg

身份证识别

parent 56e8ab24
......@@ -68,12 +68,12 @@ public class TypeHelper {
* @param type
* @return
*/
public static Class getClass(Type type) {
public static Class<?> getClass(Type type) {
if (type instanceof ParameterizedType) {
Type rawType = ((ParameterizedType) type).getRawType();
return getClass(rawType);
} else if (type instanceof Class) {
return (Class) type;
return (Class<?>) type;
}
return null;
}
......
......@@ -110,8 +110,8 @@ public class AspectWeb {
ex = e;
result = ExceptionHelper.getError(e);
Type returnType = getReturnType(joinPoint);
Class returnClass = TypeHelper.getClass(returnType);
if (TypeHelper.isClass(returnClass, ResponseResult.class)) {
Class<?> returnClass = TypeHelper.getClass(returnType);
if (returnClass != null && TypeHelper.isClass(returnClass, ResponseResult.class)) {
return result;
} else if (TypeHelper.isSubType(returnType, ResponseResult.class)) {
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