Explorar el Código

系统:拦截器调整,统一异常处理,防重复提交指纹

4.0
郑根木 hace 2 años
padre
commit
a258676c8d
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      smtweb-framework/core/src/main/java/cc/smtweb/framework/core/session/SessionUtil.java

+ 2
- 1
smtweb-framework/core/src/main/java/cc/smtweb/framework/core/session/SessionUtil.java Ver fichero

@@ -191,7 +191,8 @@ public class SessionUtil {

AtomicInteger ai = cache.get(fpKey + "_" + fpk);
if (ai == null) {
cache.put(fpKey + "_" + fpk, new AtomicInteger(0));
ai = new AtomicInteger(0);
cache.put(fpKey + "_" + fpk, ai);
}
r.put(KEY_PARAM_FP_KEY, fpk);
r.put(KEY_PARAM_FP_VAL, ai.getAndIncrement());


Cargando…
Cancelar
Guardar