|
@@ -3,6 +3,7 @@ package com.ozs.framework.web.service;
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
|
import com.ozs.framework.manager.factory.AsyncFactory;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.security.authentication.AuthenticationManager;
|
|
|
import org.springframework.security.authentication.BadCredentialsException;
|
|
@@ -34,6 +35,7 @@ import com.ozs.system.service.ISysUserService;
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
@Component
|
|
|
+@Slf4j
|
|
|
public class SysLoginService {
|
|
|
@Autowired
|
|
|
private TokenService tokenService;
|
|
@@ -91,6 +93,8 @@ public class SysLoginService {
|
|
|
//记录登录信息
|
|
|
recordLoginInfo(loginUser.getUserId());
|
|
|
// 生成token
|
|
|
+ Constants.FLAY = true;
|
|
|
+ log.info("******【" + Constants.FLAY + "】*******");
|
|
|
return tokenService.createToken(loginUser);
|
|
|
}
|
|
|
|