Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.melayer.camzia.config; import com.melayer.camzia.service.MeServiceUserDetails; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; /** * * @author aniruddha */ @Configuration @EnableWebSecurity public class MeConfigWebSecurity extends WebSecurityConfigurerAdapter { @Autowired private MeServiceUserDetails serviceUserDetails; @Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth.userDetailsService(serviceUserDetails); } @Override @Bean public AuthenticationManager authenticationManagerBean() throws Exception { return super.authenticationManagerBean(); } }