|
@@ -83,6 +83,7 @@ public class TopSysLoginService
|
|
|
if(password.length()>20){
|
|
|
password = AES.decrypt(password,rsaPrivate);
|
|
|
}
|
|
|
+ System.out.println("password = " + password);
|
|
|
// 该方法会去调用UserDetailsServiceImpl.loadUserByUsername
|
|
|
authentication = authenticationManager
|
|
|
.authenticate(new UsernamePasswordAuthenticationToken(username, password));
|