Springboot安全框架整合SpringSecurity实现方式
目录
- 1.工业级安全框架介绍
- 2.建议搭建Spring Security环境
- 2.1在pom.xml中添加相关依赖
- 2.2创建Handler类
- 2.3创建简单的html和配置相关thymeleaf的路径
- 2.4最后再加个启动类,那么我们的整合测试就完成勒
- 2.5成果展示 用户名默认user,密码则随机生成的这串数字
- 3.进阶版使用
- 3.1用户名和密码自定义
- 3.2在config包下创建Encoder进行密码的校验和转码操作
- 3.3赋予账号角色权限
1.工业级安全框架介绍 Spring Security基于Spring开发,项目中如果使用Spring作为基础,配合Spring Security做权限更加方便,而Shiro需要和Spring进行整合开发。因此作为spring全家桶中的Spring Security在java领域很常用。
2.建议搭建Spring Security环境
2.1在pom.xml中添加相关依赖
4.0.0 org.example springsecurityReview1.0-SNAPSHOT spring-boot-dependenciesorg.springframework.boot 2.5.4 org.springframework.boot spring-boot-starter-weborg.springframework.boot spring-boot-starter-securityorg.springframework.boot spring-boot-starter-thymeleaf
2.2创建Handler类
package com.example.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controllerpublic class Handler {@GetMapping("/index")public String index(){return "index"; }}
2.3创建简单的html和配置相关thymeleaf的路径
文章图片
2.4最后再加个启动类,那么我们的整合测试就完成勒
package com.example; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplicationpublic class Application {public static void main(String[] args) {SpringApplication.run(Application.class,args); }}
2.5成果展示 用户名默认user,密码则随机生成的这串数字
文章图片
文章图片
3.进阶版使用
3.1用户名和密码自定义
文章图片
3.2在config包下创建Encoder进行密码的校验和转码操作
将密码转成字符串形式,并通过match方法惊醒校验。
文章图片
3.3赋予账号角色权限
package com.example.config; 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.configuration.WebSecurityConfigurerAdapter; @Configurationpublic class SecurityConfig extends WebSecurityConfigurerAdapter {//角色和资源的关系@Overrideprotected void configure(HttpSecurity http) throws Exception {http.authorizeRequests().antMatchers("/admin").hasRole("ADMIN").antMatchers("/index").access("hasRole('ADMIN') or hasRole('USER') ").anyRequest().authenticated().and().formLogin().loginPage("/login").permitAll().and().logout().permitAll().and().csrf().disable(); }@Overrideprotected void configure(AuthenticationManagerBuilder auth) throws Exception {auth.inMemoryAuthentication().passwordEncoder(new MyPasswordEncoder()).withUser("user").password(new MyPasswordEncoder().encode("000")).roles("USER").and().withUser("admin").password(new MyPasswordEncoder().encode("123")).roles("ADMIN","USER"); }}
最后达到admin账号能访问admin.html和index.html
user只能访问index.html的操作
【Springboot安全框架整合SpringSecurity实现方式】以上就是Springboot安全框架整合SpringSecurity实现方式的详细内容,更多关于Springboot整合SpringSecurity的资料请关注脚本之家其它相关文章!
推荐阅读
- android第三方框架(五)ButterKnife
- Activiti(一)SpringBoot2集成Activiti6
- 标签、语法规范、内联框架、超链接、CSS的编写位置、CSS语法、开发工具、块和内联、常用选择器、后代元素选择器、伪类、伪元素。
- SpringBoot调用公共模块的自定义注解失效的解决
- 解决SpringBoot引用别的模块无法注入的问题
- NeuVector 会是下一个爆款云原生安全神器吗()
- springboot使用redis缓存
- Spring|Spring 框架之 AOP 原理剖析已经出炉!!!预定的童鞋可以识别下发二维码去看了
- springboot整合数据库连接池-->druid
- 构建App(一)(框架与结构)