diff --git a/pom.xml b/pom.xml
index af740c7..f96d69e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
pom
springboot-parent
杭州铁晟科技有限公司基础依赖
@@ -57,55 +57,55 @@
com.tiesheng.springboot-parent
springboot-database
- 1.0.2
+ 1.0.3
com.tiesheng.springboot-parent
springboot-login
- 1.0.2
+ 1.0.3
com.tiesheng.springboot-parent
springboot-web
- 1.0.2
+ 1.0.3
com.tiesheng.springboot-parent
springboot-util
- 1.0.2
+ 1.0.3
com.tiesheng.springboot-parent
springboot-platform
- 1.0.2
+ 1.0.3
com.tiesheng.springboot-parent
springboot-message
- 1.0.2
+ 1.0.3
com.tiesheng.springboot-parent
springboot-encrypt
- 1.0.2
+ 1.0.3
com.tiesheng.springboot-parent
springboot-annotation
- 1.0.2
+ 1.0.3
com.tiesheng.springboot-parent
springboot-poi
- 1.0.2
+ 1.0.3
diff --git a/springboot-ademo/pom.xml b/springboot-ademo/pom.xml
index 8752f65..5a221da 100644
--- a/springboot-ademo/pom.xml
+++ b/springboot-ademo/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
springboot-ademo
diff --git a/springboot-annotation/pom.xml b/springboot-annotation/pom.xml
index 6bc1955..8fcbfea 100644
--- a/springboot-annotation/pom.xml
+++ b/springboot-annotation/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
springboot-annotation
diff --git a/springboot-database/pom.xml b/springboot-database/pom.xml
index ac6120e..71bc3ef 100644
--- a/springboot-database/pom.xml
+++ b/springboot-database/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
springboot-database
diff --git a/springboot-encrypt/pom.xml b/springboot-encrypt/pom.xml
index 5c67561..9bb9fdc 100644
--- a/springboot-encrypt/pom.xml
+++ b/springboot-encrypt/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
springboot-encrypt
diff --git a/springboot-login/pom.xml b/springboot-login/pom.xml
index 1a55306..ff842fc 100644
--- a/springboot-login/pom.xml
+++ b/springboot-login/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
springboot-login
diff --git a/springboot-message/pom.xml b/springboot-message/pom.xml
index e0f3f11..91c2d4b 100644
--- a/springboot-message/pom.xml
+++ b/springboot-message/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
springboot-message
diff --git a/springboot-platform/pom.xml b/springboot-platform/pom.xml
index e76b9d8..9d37496 100644
--- a/springboot-platform/pom.xml
+++ b/springboot-platform/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
springboot-platform
diff --git a/springboot-poi/pom.xml b/springboot-poi/pom.xml
index 1fad049..45aa8c9 100644
--- a/springboot-poi/pom.xml
+++ b/springboot-poi/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
springboot-poi
diff --git a/springboot-util/pom.xml b/springboot-util/pom.xml
index 30b4466..2dc1ab3 100644
--- a/springboot-util/pom.xml
+++ b/springboot-util/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
springboot-util
diff --git a/springboot-web/pom.xml b/springboot-web/pom.xml
index a5b9ba7..4871b73 100644
--- a/springboot-web/pom.xml
+++ b/springboot-web/pom.xml
@@ -6,7 +6,7 @@
com.tiesheng.springboot-parent
springboot-parent
- 1.0.2
+ 1.0.3
springboot-web
diff --git a/springboot-web/src/main/java/com/tiesheng/core/config/operation/OperationAspect.java b/springboot-web/src/main/java/com/tiesheng/core/config/operation/OperationAspect.java
index 94caa66..9ab93c7 100644
--- a/springboot-web/src/main/java/com/tiesheng/core/config/operation/OperationAspect.java
+++ b/springboot-web/src/main/java/com/tiesheng/core/config/operation/OperationAspect.java
@@ -16,8 +16,6 @@ import org.springframework.stereotype.Component;
import javax.servlet.http.HttpServletRequest;
import java.lang.reflect.Method;
-import java.util.HashMap;
-import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
@@ -74,11 +72,11 @@ public class OperationAspect {
ConcurrentHashMap allParams = new ConcurrentHashMap<>(16);
if (joinPoint.getArgs().length > 0) {
reqObj = joinPoint.getArgs()[0];
- allParams.putAll(BeanUtil.beanToMap(reqObj));
+ allParams.putAll(BeanUtil.beanToMap(reqObj, false, true));
}
Object response = joinPoint.proceed(joinPoint.getArgs());
- allParams.putAll(BeanUtil.beanToMap(response));
+ allParams.putAll(BeanUtil.beanToMap(response, false, true));
if (!StrUtil.isEmpty(subject)) {
// 添加、编辑关键字处理