个人感觉这里没有什么实际意思
掌握其中的方法就行
方便后面的查看
中文说明地方为重点
package com.hanpang.shiro;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authc.AuthenticationException;
import org.apache.shiro.authc.IncorrectCredentialsException;
import org.apache.shiro.authc.LockedAccountException;
import org.apache.shiro.authc.UnknownAccountException;
import org.apache.shiro.authc.UsernamePasswordToken;
import org.apache.shiro.config.IniSecurityManagerFactory;
import org.apache.shiro.mgt.SecurityManager;
import org.apache.shiro.session.Session;
import org.apache.shiro.subject.Subject;
import org.apache.shiro.util.Factory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Simple Quickstart application showing how to use Shiro's API.
* 简单的快速开始应用 , 显示如何使用Shiro的API
* @since 0.9 RC2
*/
public class Quickstart {
private static final transient Logger log = LoggerFactory.getLogger(Quickstart.class);
public static void main(String[] args) {
// The easiest way to create a Shiro SecurityManager with configured
// realms, users, roles and permissions is to use the simple INI config.
// We'll do that by using a factory that can ingest a .ini file and
// return a SecurityManager instance:
// Use the shiro.ini file at the root of the classpath
// (file: and url: prefixes load from files and urls respectively):
Factory<SecurityManager> factory = new IniSecurityManagerFactory("classpath:shiro.ini");
SecurityManager securityManager = factory.getInstance();
// for this simple example quickstart, make the SecurityManager
// accessible as a JVM singleton. Most applications wouldn't do this
// and instead rely on their container configuration or web.xml for
// webapps. That is outside the scope of this simple quickstart, so
// we'll just do the bare minimum so you can continue to get a feel
// for things.
SecurityUtils.setSecurityManager(securityManager);
// Now that a simple Shiro environment is set up, let's see what you can do:
// get the currently executing user:
// 憨胖说: 重要代码 获取当前的Subject , 调用SecurityUtils.getSubject();
Subject currentUser = SecurityUtils.getSubject();
// Do some stuff with a Session (no need for a web or EJB container!!!)
// 憨胖说: 测试使用session
// 获取Session: 通过Subject获取Session
Session session = currentUser.getSession();
session.setAttribute("someKey", "aValue");
String value = (String) session.getAttribute("someKey");
if (value.equals("aValue")) {
Quickstart.log.info("胖先森-比较用户======>Retrieved the correct value! [" + value + "]");
}
// let's login the current user so we can check against roles and permissions:
// 测试当前用户是否已经被认证,即是否已经登录
if (!currentUser.isAuthenticated()) {
// 把用户和密码封装为 UsernamePasswordToken 对象
UsernamePasswordToken token = new UsernamePasswordToken("lonestarr", "vespa");
// RememberMe 后面说明
token.setRememberMe(true);
try {
// --> 这里执行登录操作
currentUser.login(token);
}
// 没有找到执行账号异常,UnknownAccountException
catch (UnknownAccountException uae) {
Quickstart.log.info("胖先森-没有账号<*****>There is no user with username of " + token.getPrincipal());
return;
}
// 密码错误,执行凭证异常 IncorrectCredentialsException
catch (IncorrectCredentialsException ice) {
Quickstart.log.info("胖先森-密码填写错误<*****>Password for account " + token.getPrincipal() + " was incorrect!");
return ;
}
// 用户被锁定异常 , 执行锁定账号异常 LockedAccountException web环境测试
catch (LockedAccountException lae) {
Quickstart.log.info("胖先森-锁定异常 <*****>The account for username " + token.getPrincipal() + " is locked. " +
"Please contact your administrator to unlock it.");
return ;
}
// ... catch more exceptions here (maybe custom ones specific to your application?
// 所有认证异常的父类
catch (AuthenticationException ae) {
//unexpected condition? error?
}
}
//say who they are:
//print their identifying principal (in this case, a username):
Quickstart.log.info("胖先森-登录成功===>User [" + currentUser.getPrincipal() + "] logged in successfully.");
//test a role:
// 测试是否有该角色 看shiro.ini
if (currentUser.hasRole("schwartz")) {
Quickstart.log.info("拥有角色-->May the Schwartz be with you!");
} else {
Quickstart.log.info("Hello, mere mortal.");
}
//test a typed permission (not instance-level)
//测试用户是否具备某个行为 , currentUser.isPermitted 方法
if (currentUser.isPermitted("lightsaber:weild")) {
Quickstart.log.info("任何事情,看shiro.ini 里面配置了通配符You may use a lightsaber ring. Use it wisely.");
} else {
Quickstart.log.info("Sorry, lightsaber rings are for schwartz masters only.");
}
//a (very powerful) Instance Level permission:
//更加具体的行为 winnebago可以对eagle5进行drive
if (currentUser.isPermitted("winnebago:drive:eagle5")) {
Quickstart.log.info("You are permitted to 'drive' the winnebago with license plate (id) 'eagle5'. " +
"Here are the keys - have fun!");
} else {
Quickstart.log.info("Sorry, you aren't allowed to drive the 'eagle5' winnebago!");
}
System.out.println(currentUser.isAuthenticated());
//all done - log out!
//执行登出
currentUser.logout();
System.out.println(currentUser.isAuthenticated());
System.exit(0);
}
}