admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
fanli/src/main/java/com/yeshi/fanli/aspect/RequestSerializableServiceAspect.java
@@ -17,7 +17,6 @@
import org.springframework.expression.spel.support.StandardEvaluationContext;
import org.springframework.stereotype.Component;
import com.yeshi.fanli.log.LogHelper;
import com.yeshi.fanli.util.Constant;
import com.yeshi.fanli.util.StringUtil;
import com.yeshi.fanli.util.annotation.RequestSerializableByKeyService;
@@ -92,9 +91,6 @@
                     if (!StringUtil.isNullOrEmpty(result)) {
                        try {
                           return joinPoint.proceed();
                        } catch (Throwable e) {
                           e.printStackTrace();
                           LogHelper.errorDetailInfo(e);
                        } finally {
                           jedis.del(cacheKey);
                           Constant.waitingThreadSet.remove(Thread.currentThread().getId());
@@ -105,12 +101,7 @@
                  }
               }
            } catch (Exception e) {// 原子性保护出错
               try {
                  return joinPoint.proceed();
               } catch (Throwable e1) {
                  e.printStackTrace();
                  LogHelper.errorDetailInfo(e1);
               }
            }
         }
      } catch (NoSuchMethodException e) {