feat:
This commit is contained in:
parent
11bec69f6b
commit
287ac0be85
|
@ -24,7 +24,7 @@ public class UserDetailsServiceImpl implements UserDetailsService {
|
||||||
if (user == null) {
|
if (user == null) {
|
||||||
throw new UsernameNotFoundException("用户不存在");
|
throw new UsernameNotFoundException("用户不存在");
|
||||||
}
|
}
|
||||||
return convertToUserDetails(user);
|
return convertToUserDetailsWithoutPassword(user);
|
||||||
}
|
}
|
||||||
|
|
||||||
public UserDetails loadUserById(Long userId) throws UsernameNotFoundException {
|
public UserDetails loadUserById(Long userId) throws UsernameNotFoundException {
|
||||||
|
@ -32,17 +32,19 @@ public class UserDetailsServiceImpl implements UserDetailsService {
|
||||||
if (user == null) {
|
if (user == null) {
|
||||||
throw new UsernameNotFoundException("用户不存在");
|
throw new UsernameNotFoundException("用户不存在");
|
||||||
}
|
}
|
||||||
return convertToUserDetails(user);
|
return convertToUserDetailsWithoutPassword(user);
|
||||||
}
|
}
|
||||||
|
|
||||||
private UserDetails convertToUserDetails(UserDTO user) {
|
|
||||||
|
|
||||||
|
private UserDetails convertToUserDetailsWithoutPassword(UserDTO user) {
|
||||||
List<SimpleGrantedAuthority> authorities = new ArrayList<>();
|
List<SimpleGrantedAuthority> authorities = new ArrayList<>();
|
||||||
authorities.add(new SimpleGrantedAuthority("ROLE_USER"));
|
authorities.add(new SimpleGrantedAuthority("ROLE_USER"));
|
||||||
|
|
||||||
return new CustomUserDetails(
|
return new CustomUserDetails(
|
||||||
user.getId(),
|
user.getId(),
|
||||||
user.getUsername(),
|
user.getUsername(),
|
||||||
user.getPassword(),
|
null,
|
||||||
authorities,
|
authorities,
|
||||||
user.getStatus() == 1
|
user.getStatus() == 1
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue