Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Access Denied in spring security 4 even after successful authentication

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 1.76k
    Comment on it

    In spring security after successfull authentication I was getting the Access denied error to go to pages which had the authentication.

    What I did was.

    1. @Override
    2. protected void configure(HttpSecurity http) throws Exception {
    3.  
    4. http
    5. .authorizeRequests()
    6. .antMatchers("/", "/homepage/**").permitAll()
    7. .antMatchers("/admin/**").access("hasRole('ADMIN')")
    8. .antMatchers("/db/**").access("hasRole('ADMIN') and hasRole('DBA')")
    9. .and().formLogin().loginPage("/login")
    10. .usernameParameter("username").passwordParameter("password")
    11. .and().exceptionHandling().accessDeniedPage("/Access_Denied");
    12. }

    Here the mistake was the role is authneticated if its written completely with ROLE_ prefix. In DB also it should be stored with ROLE_ prefix. Here is the updated code which worked well.

    1. @Override
    2. protected void configure(HttpSecurity http) throws Exception {
    3.  
    4. http
    5. .authorizeRequests()
    6. .antMatchers("/", "/homepage/**").permitAll()
    7. .antMatchers("/admin/**").access("hasRole('ROLE_ADMIN')")
    8. .antMatchers("/db/**").access("hasRole('ROLE_ADMIN') and hasRole('ROLE_DBA')")
    9. .and().formLogin().loginPage("/login")
    10. .usernameParameter("username").passwordParameter("password")
    11. .and().exceptionHandling().accessDeniedPage("/Access_Denied");
    12. }

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: