diff --git a/wfc-gateway/pom.xml b/wfc-gateway/pom.xml
index 80071de..d74689c 100644
--- a/wfc-gateway/pom.xml
+++ b/wfc-gateway/pom.xml
@@ -69,6 +69,11 @@
pro.fessional
kaptcha
+
+
+ org.wfc
+ wfc-common-mail
+
diff --git a/wfc-gateway/src/main/java/org/wfc/gateway/config/properties/CaptchaProperties.java b/wfc-gateway/src/main/java/org/wfc/gateway/config/properties/CaptchaProperties.java
index 1dbc0e5..f6f9aba 100644
--- a/wfc-gateway/src/main/java/org/wfc/gateway/config/properties/CaptchaProperties.java
+++ b/wfc-gateway/src/main/java/org/wfc/gateway/config/properties/CaptchaProperties.java
@@ -6,7 +6,7 @@ import org.springframework.context.annotation.Configuration;
/**
* 验证码配置
- *
+ *
* @author wfc
*/
@Configuration
@@ -15,15 +15,10 @@ import org.springframework.context.annotation.Configuration;
public class CaptchaProperties
{
/**
- * 图片验证码开关
+ * 验证码开关
*/
private Boolean enabled;
- /**
- * 邮箱验证码开关
- */
- private Boolean mailEnabled;
-
/**
* 验证码类型(math 数组计算 char 字符)
*/
@@ -48,12 +43,4 @@ public class CaptchaProperties
{
this.type = type;
}
-
- public Boolean getMailEnabled() {
- return mailEnabled;
- }
-
- public void setMailEnabled(Boolean mailEnabled) {
- this.mailEnabled = mailEnabled;
- }
}
diff --git a/wfc-gateway/src/main/java/org/wfc/gateway/filter/ValidateCodeFilter.java b/wfc-gateway/src/main/java/org/wfc/gateway/filter/ValidateCodeFilter.java
index dba1339..5decc69 100644
--- a/wfc-gateway/src/main/java/org/wfc/gateway/filter/ValidateCodeFilter.java
+++ b/wfc-gateway/src/main/java/org/wfc/gateway/filter/ValidateCodeFilter.java
@@ -1,7 +1,8 @@
package org.wfc.gateway.filter;
-import com.alibaba.fastjson2.JSON;
-import com.alibaba.fastjson2.JSONObject;
+import java.nio.CharBuffer;
+import java.nio.charset.StandardCharsets;
+import java.util.concurrent.atomic.AtomicReference;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.gateway.filter.GatewayFilter;
import org.springframework.cloud.gateway.filter.factory.AbstractGatewayFilterFactory;
@@ -9,16 +10,14 @@ import org.springframework.core.io.buffer.DataBuffer;
import org.springframework.core.io.buffer.DataBufferUtils;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.stereotype.Component;
+import com.alibaba.fastjson2.JSON;
+import com.alibaba.fastjson2.JSONObject;
import org.wfc.common.core.utils.ServletUtils;
import org.wfc.common.core.utils.StringUtils;
import org.wfc.gateway.config.properties.CaptchaProperties;
import org.wfc.gateway.service.ValidateCodeService;
import reactor.core.publisher.Flux;
-import java.nio.CharBuffer;
-import java.nio.charset.StandardCharsets;
-import java.util.concurrent.atomic.AtomicReference;
-
/**
* 验证码过滤器
*
@@ -27,8 +26,7 @@ import java.util.concurrent.atomic.AtomicReference;
@Component
public class ValidateCodeFilter extends AbstractGatewayFilterFactory