Commit a18a6542 authored by 赵啸非's avatar 赵啸非

更新登录页面鉴权

parent 75da210a
......@@ -71,7 +71,7 @@ public class AccessMessageConsumerListener {
@RabbitHandler
public void onMessage(List<AccessLogEntity> messages) {
log.info("[Access onMessage][消息数量:{}]", messages.size());
List<AccessLogEntity> collect = messages.stream().map(entity -> {
try {
// AccessLogEntity entity =null;
......@@ -93,6 +93,7 @@ public class AccessMessageConsumerListener {
}
}).filter(f -> f != null).collect(Collectors.toList());
log.info("[Access onMessage][消息数量:{}]", collect.size());
accessLogService.save(collect);
}
......
......@@ -68,7 +68,6 @@ public class LoginController extends BaseCRUDJsonBodyMappingController<UserServi
String resp = userFeign.portalLogin(userPdu);
//String resp="";
return resp;
/* String securityCode = loginForm.getSecurityCode();
String ip = super.getRequestIP(request);
if (StringUtils.isEmpty(loginName) || StringUtils.isEmpty(password)) {
......
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