shiro随记一

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shiro随记一相关的知识,希望对你有一定的参考价值。

maven新建第一个shiro本地项目

1 maven pom.xml配置

版本号要对应,不然会出现报错情况

<dependencies>
  <dependency>
    <groupId>org.apache.shiro</groupId>
    <artifactId>shiro-core</artifactId>
    <version>1.2.4</version>
  </dependency>

  <dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-log4j12</artifactId>
    <version>1.7.12</version>
  </dependency>
</dependencies>

2maven 配置文件

技术分享

 

3 主测试文件ShiroT1.java

public static void main(String[] args) {
  // 读取配置文件,初始化SecurityManager工厂
  Factory<SecurityManager> factory=new IniSecurityManagerFactory("classpath:shiro.ini");
  // 获取securityManager实例
  SecurityManager securityManager=factory.getInstance();
  // 把securityManager实例绑定到SecurityUtils
  SecurityUtils.setSecurityManager(securityManager);
  // 得到当前执行的用户
  Subject currentUser=SecurityUtils.getSubject();
  // 创建token令牌,用户名/密码
  UsernamePasswordToken token=new UsernamePasswordToken("java1234", "12345");
  try{
    // 身份认证
    currentUser.login(token);
    System.out.println("身份认证成功!");
  }catch(AuthenticationException e){
    e.printStackTrace();
    System.out.println("身份认证失败!");
  }
  // 退出
  currentUser.logout();
}


































以上是关于shiro随记一的主要内容,如果未能解决你的问题,请参考以下文章

linux-随记-帮助命令

sql 中各种锁随记

VSCode配置Git随记

vue随记

Jsoup使用随记

MySQL随记 - DDL