This commit is contained in:
lcj
2025-07-25 15:58:03 +08:00
parent b9e9d6e855
commit eaac167036
785 changed files with 797 additions and 792 deletions

View File

@ -3,7 +3,7 @@ package org.dromara.common.core.constant;
import java.util.regex.Pattern;
/**
* @author lcj
* @author lilemy
* @date 2025/4/7 17:12
*/
public interface DateConstant {

View File

@ -3,7 +3,7 @@ package org.dromara.common.core.domain.vo;
import lombok.Data;
/**
* @author lcj
* @author lilemy
* @date 2025/3/19 11:40
*/
@Data

View File

@ -14,7 +14,6 @@ import org.springframework.http.HttpMethod;
import org.springframework.util.CollectionUtils;
import org.springframework.util.PathMatcher;
import org.springframework.web.method.HandlerMethod;
import org.springframework.web.servlet.HandlerExceptionResolver;
import org.springframework.web.servlet.HandlerExecutionChain;
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;
@ -46,7 +45,7 @@ public class CryptoFilter implements Filter {
//boolean responseFlag = apiEncrypt != null && apiEncrypt.response();
//直接全局加密
boolean responseFlag = true;
boolean responseFlag = false;
// 检查请求是否被排除
if (isExcludedPath(servletRequest.getRequestURI())) {
@ -58,8 +57,6 @@ public class CryptoFilter implements Filter {
return;
}
ServletRequest requestWrapper = null;
ServletResponse responseWrapper = null;
EncryptResponseBodyWrapper responseBodyWrapper = null;