|
|
@@ -1,5 +1,6 @@
|
|
|
package com.kxs.system.biz.filter;
|
|
|
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
import cn.hutool.crypto.symmetric.AES;
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
@@ -201,7 +202,9 @@ public class RequestDecoderFilter implements Filter {
|
|
|
if (decryptJson != null) {
|
|
|
for (String key : decryptJson.keySet()) {
|
|
|
Object value = decryptJson.get(key);
|
|
|
- this.decryptedParams.put(key, value != null ? value.toString() : "");
|
|
|
+ if(StrUtil.isNotEmpty(String.valueOf(value))){
|
|
|
+ this.decryptedParams.put(key, value.toString());
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|