the first working version #2

Merged
Petr merged 15 commits from develop into master 2025-02-19 07:56:27 +00:00
Showing only changes of commit 8098e04d33 - Show all commits

View File

@ -0,0 +1,14 @@
package com.example.nto.service.impl;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.springframework.stereotype.Service;
@Service
public class UserDetailsServiceImpl implements UserDetailsService {
@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
return null;
}
}