美文网首页
springboot项目搭建开发(三)

springboot项目搭建开发(三)

作者: 雨落流年 | 来源:发表于2020-06-14 23:38 被阅读0次

    前言

    通过前文,一个简单的springboot项目已经搭建完毕。在此基础上,我们来搭建一个简单的权限管理,做到具体的路由拦截。通过本文,你将了解Spring Security在Springboot上的初步搭建。

    1. pox.xml 加入如下依赖
    <!-- 权限集成 -->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-security</artifactId>
    </dependency>
    <!-- 权限测试 -->
    <dependency>
      <groupId>org.springframework.security</groupId>
      <artifactId>spring-security-test</artifactId>
      <scope>test</scope>
    </dependency>
    
    2.Spring Security配置
    package org.yh.config;
    
    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.configuration.EnableWebSecurity;
    import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
    import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
    import org.springframework.security.crypto.password.PasswordEncoder;
    
    @Configuration
    @EnableWebSecurity
    public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
    
        @Override
        protected void configure(AuthenticationManagerBuilder auth) throws Exception {
            auth.inMemoryAuthentication()
                    .passwordEncoder(passwordEncoder())
                    .withUser("user")
                    .password(passwordEncoder().encode("miClave"))
                    .roles("USER");
    
        }
        // 使用工作因数的加密算法
        @Bean
        public PasswordEncoder passwordEncoder() {
            return new BCryptPasswordEncoder();
        }
    }
    
    

    3.浏览器运行,Spring Security启动成功

    相关文章

      网友评论

          本文标题:springboot项目搭建开发(三)

          本文链接:https://www.haomeiwen.com/subject/wrhqxktx.html