文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

SpringBoot中怎么对Shiro进行整合

2023-06-08 05:30

关注

本篇内容介绍了“SpringBoot中怎么对Shiro进行整合”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

原生的整合

创建项目

创建一个 Spring Boot 项目,只需要添加 Web 依赖即可:

SpringBoot中怎么对Shiro进行整合

项目创建成功后,加入 Shiro 相关的依赖,完整的 pom.xml 文件中的依赖如下:

<dependencies>  <dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-web</artifactId>  </dependency>  <dependency>    <groupId>org.apache.shiro</groupId>    <artifactId>shiro-web</artifactId>    <version>1.4.0</version>  </dependency>  <dependency>    <groupId>org.apache.shiro</groupId>    <artifactId>shiro-spring</artifactId>    <version>1.4.0</version>  </dependency></dependencies>

创建 Realm

接下来我们来自定义核心组件 Realm:

public class MyRealm extends AuthorizingRealm {  @Override  protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {    return null;  }  @Override  protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {    String username = (String) token.getPrincipal();    if (!"javaboy".equals(username)) {      throw new UnknownAccountException("账户不存在!");    }    return new SimpleAuthenticationInfo(username, "123", getName());  }}

在 Realm 中实现简单的认证操作即可,不做授权,授权的具体写法和 SSM 中的 Shiro 一样,不赘述。这里的认证表示用户名必须是 javaboy ,用户密码必须是 123 ,满足这样的条件,就能登录成功!

配置 Shiro

接下来进行 Shiro 的配置:

@Configurationpublic class ShiroConfig {  @Bean  MyRealm myRealm() {    return new MyRealm();  }    @Bean  SecurityManager securityManager() {    DefaultWebSecurityManager manager = new DefaultWebSecurityManager();    manager.setRealm(myRealm());    return manager;  }    @Bean  ShiroFilterFactoryBean shiroFilterFactoryBean() {    ShiroFilterFactoryBean bean = new ShiroFilterFactoryBean();    bean.setSecurityManager(securityManager());    bean.setLoginUrl("/login");    bean.setSuccessUrl("/index");    bean.setUnauthorizedUrl("/unauthorizedurl");    Map<String, String> map = new LinkedHashMap<>();    map.put("/doLogin", "anon");    map.put("/**", "authc");    bean.setFilterChainDefinitionMap(map);    return bean;  }}

在这里进行 Shiro 的配置主要配置 3 个 Bean :

其中,ShiroFilterFactoryBean 的配置稍微多一些,配置含义如下:

这些东西都配置完成后,接下来配置登录 Controller:

@RestControllerpublic class LoginController {  @PostMapping("/doLogin")  public void doLogin(String username, String password) {    Subject subject = SecurityUtils.getSubject();    try {      subject.login(new UsernamePasswordToken(username, password));      System.out.println("登录成功!");    } catch (AuthenticationException e) {      e.printStackTrace();      System.out.println("登录失败!");    }  }  @GetMapping("/hello")  public String hello() {    return "hello";  }  @GetMapping("/login")  public String login() {    return "please login!";  }}

测试时,首先访问 /hello 接口,由于未登录,所以会自动跳转到 /login 接口:

SpringBoot中怎么对Shiro进行整合

然后调用 /doLogin 接口完成登录:

SpringBoot中怎么对Shiro进行整合

再次访问 /hello 接口,就可以成功访问了:

SpringBoot中怎么对Shiro进行整合

使用 Shiro Starter

上面这种配置方式实际上相当于把 SSM 中的 XML 配置拿到 Spring Boot 中用 Java 代码重新写了一遍,除了这种方式之外,我们也可以直接使用 Shiro 官方提供的 Starter 。

创建工程,和上面的一样

创建成功后,添加 shiro-spring-boot-web-starter ,这个依赖可以代替之前的 shiro-web 和 shiro-spring 两个依赖,pom.xml 文件如下:

<dependencies>  <dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-web</artifactId>  </dependency>  <dependency>    <groupId>org.apache.shiro</groupId>    <artifactId>shiro-spring-boot-web-starter</artifactId>    <version>1.4.0</version>  </dependency></dependencies>

创建 Realm

这里的 Realm 和前面的一样,我就不再赘述。

配置 Shiro 基本信息

接下来在 application.properties 中配置 Shiro 的基本信息:

shiro.sessionManager.sessionIdCookieEnabled=trueshiro.sessionManager.sessionIdUrlRewritingEnabled=trueshiro.unauthorizedUrl=/unauthorizedurlshiro.web.enabled=trueshiro.successUrl=/indexshiro.loginUrl=/login

配置解释:

配置 ShiroConfig

@Configurationpublic class ShiroConfig {  @Bean  MyRealm myRealm() {    return new MyRealm();  }  @Bean  DefaultWebSecurityManager securityManager() {    DefaultWebSecurityManager manager = new DefaultWebSecurityManager();    manager.setRealm(myRealm());    return manager;  }  @Bean  ShiroFilterChainDefinition shiroFilterChainDefinition() {    DefaultShiroFilterChainDefinition definition = new DefaultShiroFilterChainDefinition();    definition.addPathDefinition("/doLogin", "anon");    definition.addPathDefinition("/**", "authc");    return definition;  }}

“SpringBoot中怎么对Shiro进行整合”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯