亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

SpringMVC怎么集成SpringSecurity使用

小億
123
2024-04-18 15:18:14
欄目: 編程語言

要在Spring MVC中集成Spring Security,需要按照以下步驟進行操作:

  1. 添加Spring Security依賴 首先需要在項目的pom.xml文件中添加Spring Security的依賴,例如:
<dependency>
    <groupId>org.springframework.security</groupId>
    <artifactId>spring-security-web</artifactId>
    <version>5.4.2</version>
</dependency>
<dependency>
    <groupId>org.springframework.security</groupId>
    <artifactId>spring-security-config</artifactId>
    <version>5.4.2</version>
</dependency>
  1. 配置Spring Security 在項目中創建一個繼承自WebSecurityConfigurerAdapter的配置類,并在其中配置Spring Security的相關設置,例如:
@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")
                .permitAll()
                .and()
                .logout()
                .permitAll();
    }

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication()
                .withUser("admin").password("{noop}admin123").roles("ADMIN")
                .and()
                .withUser("user").password("{noop}user123").roles("USER");
    }
}
  1. 配置Spring MVC 在Spring MVC的配置類中添加對Spring Security的支持,例如:
@Configuration
@EnableWebMvc
public class WebConfig implements WebMvcConfigurer {

    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        registry.addViewController("/login").setViewName("login");
    }

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");
    }
}
  1. 創建登錄頁面 在項目中創建一個登錄頁面,例如login.jsp,并在登錄頁面中添加表單來進行用戶登錄。

通過以上步驟,就可以在Spring MVC項目中集成Spring Security,實現用戶認證和授權功能。

0
敦化市| 淳化县| 光山县| 思南县| 武强县| 盐边县| 汾西县| 鸡西市| 上栗县| 徐州市| 介休市| 浦东新区| 沁水县| 清原| 余姚市| 泰和县| 秀山| 涪陵区| 屯门区| 平度市| 佛冈县| 闸北区| 石阡县| 南木林县| 长治市| 滁州市| 嵩明县| 峨边| 乐业县| 库伦旗| 正镶白旗| 全南县| 大石桥市| 海阳市| 北海市| 武宣县| 长春市| 清水县| 麻栗坡县| 呼图壁县| 宜章县|