您好,登錄后才能下訂單哦!
要在Spring Security中配置基于角色的訪問控制,您可以使用antMatchers()
方法和hasRole()
方法來定義URL模式和角色的對應關系。
以下是一個簡單的示例配置:
@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/admin/**").hasRole("ADMIN")
.antMatchers("/user/**").hasRole("USER")
.anyRequest().authenticated()
.and()
.formLogin()
.loginPage("/login")
.and()
.logout()
.logoutUrl("/logout")
.logoutSuccessUrl("/login?logout")
.and()
.exceptionHandling()
.accessDeniedPage("/403");
}
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth
.inMemoryAuthentication()
.withUser("admin").password("{noop}admin").roles("ADMIN")
.and()
.withUser("user").password("{noop}user").roles("USER");
}
}
在這個配置中,我們定義了兩個角色:“ADMIN”和“USER”,并為它們分別指定了訪問的URL模式。管理員可以訪問/admin/**
路徑,而普通用戶可以訪問/user/**
路徑。任何其他URL都需要進行身份驗證。
請注意,在configure(AuthenticationManagerBuilder auth)
方法中,我們使用了inMemoryAuthentication()
方法來定義了兩個用戶,分別屬于兩種不同的角色。
這只是一個簡單的示例配置,您可以根據自己的需求來定義更多的角色和對應的訪問控制規則。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。