MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Uwierzytelnianie za pomocą Spring Security + Spring data + MongoDB

Warstwa usług

Musisz utworzyć oddzielną service implementacja usługi org.springframework.security.core.userdetails.UserDetailsService i wstrzyknij go do AuthenticationManagerBuilder .

@Component
public class SecUserDetailsService implements UserDetailsService{

    @Autowired
    private UserRepository userRepository;

    @Override
    public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
        /*Here add user data layer fetching from the MongoDB.
          I have used userRepository*/
        User user = userRepository.findByUsername(username);
        if(user == null){
            throw new UsernameNotFoundException(username);
        }else{
            UserDetails details = new SecUserDetails(user);
            return details;
        }
    }
}

Model

UserDetails Powinna być również zaimplementowana. To jest POJO, które będzie przechowywać dane uwierzytelnione przez użytkownika do wiosny. Możesz umieścić w nim swój obiekt danych Entity, tak jak ja to zrobiłem.

public class SecUserDetails implements UserDetails {

    private User user;

    public SecUserDetails(User user) {
        this.user = user;
    }
    ......
    ......
    ......
}

Konfiguracja zabezpieczeń

Automatycznie połącz usługę, którą utworzyliśmy wcześniej i ustaw ją w AuthenticationManagerBuilder

@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
    @Autowired
    SecUserDetailsService userDetailsService ;

    @Autowired
    public void configAuthBuilder(AuthenticationManagerBuilder builder) throws Exception {
        builder.userDetailsService(userDetailsService); 
    }
}


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. MongoDB:ustaw użytkownika/hasło na dostęp do db

  2. MongoDB Policz całkowitą liczbę wartości prawda i fałsz dla dokumentów pasujących do zapytania

  3. Panel administracyjny dla Node.js i Mongoose

  4. Renderować podstawowy widok HTML?

  5. Wdrażanie aplikacji nodejs na platformie Google Cloud