Commit 253180d8 authored by 赵啸非's avatar 赵啸非

添加站点业务备注

parent ccfd59ee
...@@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.*; ...@@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.*;
* @author: zxfei * @author: zxfei
* @date: 2022/5/30 10:40 * @date: 2022/5/30 10:40
*/ */
@FeignClient(name = "base-manager", path = "/zwfw", fallback = AreaFeignFallbackFactory.class) @FeignClient(name = "base-manager", path = "/base", fallback = AreaFeignFallbackFactory.class)
public interface IApiAreaFeign extends IFeign { public interface IApiAreaFeign extends IFeign {
......
...@@ -98,7 +98,6 @@ public class ValidateCodeServiceImpl implements ValidateCodeService { ...@@ -98,7 +98,6 @@ public class ValidateCodeServiceImpl implements ValidateCodeService {
String verifyKey = Constant.CAPTCHA_CODE_KEY + uuid; String verifyKey = Constant.CAPTCHA_CODE_KEY + uuid;
String captcha = cacheService.get(verifyKey); String captcha = cacheService.get(verifyKey);
cacheService.del(verifyKey); cacheService.del(verifyKey);
// RedisUtils.deleteObject(verifyKey);
if (!code.equalsIgnoreCase(captcha)) { if (!code.equalsIgnoreCase(captcha)) {
throw new CaptchaException(); throw new CaptchaException();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment