Spring Boot Spring Security JWT Tutorial Part 11 UserServiceImpl UserDetailsService, UserService

Опубликовано: 29 Сентябрь 2024
на канале: CodeWis Technologies by Nuhman Paramban
122
1

Spring Boot Spring Security JWT Tutorial Part 11 UserServiceImpl UserDetailsService, UserService
@Service(value = "userService")
public class UserServiceImpl implements UserDetailsService, UserService {

@Autowired
private UserRepository userRepository;

@Autowired
private BCryptPasswordEncoder bcryptEncoder;


@Override
public UserDetails loadUserByUsername(String s) throws UsernameNotFoundException