Created
October 24, 2018 14:52
-
-
Save vip3r011/7d792c2d684e1e66f05bcfd5c21954e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.gpch.login.configuration; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.beans.factory.annotation.Value; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; | |
import org.springframework.security.config.annotation.web.builders.HttpSecurity; | |
import org.springframework.security.config.annotation.web.builders.WebSecurity; | |
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; | |
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; | |
import org.springframework.security.web.util.matcher.AntPathRequestMatcher; | |
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; | |
import org.springframework.security.crypto.password.DelegatingPasswordEncoder; | |
import org.springframework.security.crypto.password.NoOpPasswordEncoder; | |
import org.springframework.security.crypto.password.PasswordEncoder; | |
import org.springframework.security.crypto.password.StandardPasswordEncoder; | |
import org.springframework.security.crypto.scrypt.SCryptPasswordEncoder; | |
import javax.sql.DataSource; | |
@Configuration | |
@EnableWebSecurity | |
public class SecurityConfiguration extends WebSecurityConfigurerAdapter { | |
@Autowired | |
private DataSource dataSource; | |
@Value("${spring.queries.users-query}") | |
private String usersQuery; | |
@Value("${spring.queries.roles-query}") | |
private String rolesQuery; | |
@Override | |
protected void configure(AuthenticationManagerBuilder auth) | |
throws Exception { | |
auth. | |
jdbcAuthentication() | |
.usersByUsernameQuery(usersQuery) | |
.authoritiesByUsernameQuery(rolesQuery) | |
.dataSource(dataSource) | |
.passwordEncoder(passwordEncoder()); | |
} | |
@Override | |
protected void configure(HttpSecurity http) throws Exception { | |
http. | |
authorizeRequests() | |
.antMatchers("/").permitAll() | |
.antMatchers("/login").permitAll() | |
.antMatchers("/registration").permitAll() | |
.antMatchers("/admin/**").hasAuthority("ADMIN").anyRequest() | |
.authenticated().and().csrf().disable().formLogin() | |
.loginPage("/login").failureUrl("/login?error=true") | |
.defaultSuccessUrl("/admin/home") | |
.usernameParameter("email") | |
.passwordParameter("password") | |
.and().logout() | |
.logoutRequestMatcher(new AntPathRequestMatcher("/logout")) | |
.logoutSuccessUrl("/").and().exceptionHandling() | |
.accessDeniedPage("/access-denied"); | |
} | |
@Override | |
public void configure(WebSecurity web) throws Exception { | |
web | |
.ignoring() | |
.antMatchers("/resources/**", "/static/**", "/css/**", "/js/**", "/images/**"); | |
} | |
@SuppressWarnings("deprecation") | |
@Bean | |
public static NoOpPasswordEncoder passwordEncoder() { | |
return (NoOpPasswordEncoder) NoOpPasswordEncoder.getInstance(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment