Apache Shiro(二)第一個shiro應用程式
如果您是Apache Shiro的新手,這個簡短的教程將向您展示如何使用Apache Shiro構建一個最初步的,簡單的應用程式。我們將一路上討論Shiro的核心概念,以幫助您熟悉Shiro的設計和API。
如果您不想在學習本教程時實際編輯檔案,則可以獲得幾乎相同的示例應用程式並隨時引用它。選擇一個位置:
1、搭建
在這個簡單的例子中,我們將建立一個非常簡單的命令列應用程式,它將執行並快速退出,這樣您就可以瞭解Shiro的API。
Apache Shiro的最初設計,就是支援任何應用程式 - 從最小的命令列應用程式到最大的叢集Web應用程式。即使我們正在為本教程建立一個簡單的應用程式,但要知道無論您的應用程式如何建立或部署,shiro都是以同樣的方式使用。
搭建前置條件
- JDK版本在1.5及以上
- Maven 2.2.1及以上(maven並非是shiro要求的,只是示例使用了而已。您可以獲得Shiro的jars並以您喜歡的方式將它們合併到您的應用程式中,例如使用Apache Ant和Ivy)
例如,現在建立一個maven專案,shiro-tutorial
並將以下Maven pom.xml
檔案儲存在該目錄中:
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.shiro.tutorials</groupId> <artifactId>shiro-tutorial</artifactId> <version>1.0.0-SNAPSHOT</version> <name>First Apache Shiro Application</name> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.5</source> <target>1.5</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <!-- This plugin is only to test run our little application. It is not needed in most Shiro-enabled applications: --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.1</version> <executions> <execution> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <classpathScope>test</classpathScope> <mainClass>Tutorial</mainClass> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>1.1.0</version> </dependency> <!-- Shiro uses SLF4J for logging. We'll use the 'simple' binding in this example app. See http://www.slf4j.org for more info. --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.6.1</version> <scope>test</scope> </dependency> </dependencies> </project>
我們將執行一個簡單的應用程式,因此我們需要使用public static void main(String[] args)
方法建立一個Java類。
在包含您的pom.xml
檔案的同一目錄中,建立一個src/main/java
子目錄。在src/main/java
建立Tutorial.java
包含以下內容的檔案時:
src/main/java/Tutorial.java
import org.apache.shiro.SecurityUtils; import org.apache.shiro.authc.*; 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; public class Tutorial { private static final transient Logger log = LoggerFactory.getLogger(Tutorial.class); public static void main(String[] args) { log.info("My First Apache Shiro Application"); System.exit(0); } }
測試執行
執行main方法,你會看到我們的小教程“應用程式”執行並退出。您應該看到類似於以下內容的東西(注意粗體文字,指示我們的輸出):
執行應用程式[Tutorial.main()] INFO Tutorial - My First Apache Shiro Application
我們已經驗證了應用程式執行成功 - 現在讓我們啟用Apache Shiro。
在應用程式中啟用Shiro時要首先要理解的是,Shiro中的幾乎所有內容都與稱為的中心/核心元件相關SecurityManager有關係
。對於那些熟悉Java安全性的人來說,這是Shiro關於SecurityManager的概念 - 它與java.lang.SecurityManager
不是一回事。
雖然我們將在架構章節中詳細介紹Shiro的設計,現階段只需要瞭解Shiro SecurityManager
是應用程式中Shiro環境的核心,並且每個應用程式都必須存在一個獨立的SecurityManager
。因此,我們在Tutorial應用程式中必須做的第一件事是設定SecurityManager
例項。
配置
雖然我們可以直接例項化一個SecurityManager
類,但是Shiro的SecurityManager
實現有足夠多的配置選項和內部元件,這使得直接用Java程式碼例項化變得很麻煩 - SecurityManager
使用靈活的基於文字的配置格式配置會容易得多。
為此,Shiro提供基於INI文字的預設的配置解決方案。人們現在已經厭倦了使用龐大的XML檔案,INI易於閱讀,易於使用,並且需要很少的依賴性。
Shiro的SecurityManager
實現和所有支援元件都相容JavaBeans。這使得Shiro可以通過任何配置格式進行配置,如XML(Spring,JBoss,Guice等),YAML,JSON,Groovy Builder等。INI只是Shiro在任何其他配置方式不可用的環境下提供的最基礎的配置格式。
So we’ll use an INI file to configure the Shiro SecurityManager
for this simple application. First, create a src/main/resources
directory starting in the same directory where the pom.xml
is. Then create a shiro.ini
file in that new directory with the following contents:
因此,我們將在這個簡單的應用程式中使用INI檔案來配置SecurityManager
。首先,建立一個與pom.xml檔案同級的目錄
src/main/resources
。然後在該目錄下建立shiro.ini檔案,檔案內容:
# =============================================================================
# Tutorial INI configuration
#
# Usernames/passwords are based on the classic Mel Brooks' film "Spaceballs" :)
# =============================================================================
# -----------------------------------------------------------------------------
# Users and their (optional) assigned roles
# username = password, role1, role2, ..., roleN
# -----------------------------------------------------------------------------
[users]
root = secret, admin
guest = guest, guest
presidentskroob = 12345, president
darkhelmet = ludicrousspeed, darklord, schwartz
lonestarr = vespa, goodguy, schwartz
# -----------------------------------------------------------------------------
# Roles with assigned permissions
# roleName = perm1, perm2, ..., permN
# -----------------------------------------------------------------------------
[roles]
admin = *
schwartz = lightsaber:*
goodguy = winnebago:drive:eagle5
如您所見,配置檔案中配置了一組靜態使用者帳號,用來在我們的第一個應用程式中使用。在後面的章節中,您將看到我們如何使用更復雜的使用者資料源,如關係資料庫,LDAP和ActiveDirectory等。
Now that we have an INI file defined, we can create the SecurityManager
instance in our Tutorial application class. Change the main
method to reflect the following updates:
現在我們已經定義了一個INI檔案,我們可以在示例應用程式中建立SecurityManager
。按照如下改寫main方法:
public static void main(String[] args) {
log.info("My First Apache Shiro Application");
//1.
Factory<SecurityManager> factory = new IniSecurityManagerFactory("classpath:shiro.ini");
//2.
SecurityManager securityManager = factory.getInstance();
//3.
SecurityUtils.setSecurityManager(securityManager);
System.exit(0);
}
在添加了3行程式碼後,我們的示例應用程式中啟用了Shiro!
執行main方法,你會看到一切仍然執行成功(由於Shiro的預設日誌等級是debug或者更低,所以你不會看到任何Shiro日誌訊息 - 如果它啟動並執行沒有錯誤,那麼說明一切都正常)。
那麼上述3行程式碼具體做了什麼呢?
-
我們使用Shiro的
IniSecurityManagerFactory
實現來載入位於類路徑根目錄下的shiro.ini
。該實現反映了Shiro對工廠方法設計模式的支援。該classpath:
字首是一個資源指示符,告訴shiro從哪裡載入ini檔案(其他字首,如url:
和file:一樣支援
)。 -
呼叫
factory.getInstance()
方法,該方法解析INI檔案並返回配置的SecurityManager
例項。 -
在這個示例中,我們設定
SecurityManager為
可通過JVM訪問的靜態單例物件
。但是需要注意的是,如果在jvm上執行多個shiro應用程式時,這樣做是不推薦的。當然對於這個簡單的示例是沒關係。但更復雜的應用程式通常會把SecurityManager放置在應用程式特定的記憶體中
(例如在Web應用程式ServletContext
或Spring,Guice或JBoss DI容器例項中)
現在我們的SecurityManager已經準備就緒,現在我們可以開始做我們真正關心的事情 - 執行安全操作。
在保護我們的應用程式時,我們自問的最相關的問題可能是“誰是當前使用者?”或“當前使用者是否允許執行X”?在我們編寫程式碼或設計使用者介面時,通常會問這些問題:應用程式通常是基於使用者需求構建的,並且您希望根據每一個使用者來展示不同功能。因此,我們在應用程式中考慮安全性的最自然方式是基於當前使用者。Shiro的API從根本上用Subject
概念代表了“當前使用者” 的概念。
在幾乎所有環境中,您都可以通過以下呼叫獲取當前正在執行的使用者:
Subject currentUser = SecurityUtils.getSubject();
用getSubject(),我們可以獲取當前正在執行的Subject
。Subject是一個安全術語,基本上是指“當前正在執行的使用者的特定於安全性的檢視”。它不被稱為“使用者”,因為“使用者”這個詞通常與人類相關聯。在安全領域,術語“主體”可以指人類,也可以指第三方流程,定時任務,守護程式帳戶或任何類似的行為。它只是意味著“當前與軟體互動的東西”。但是,為了理解,您可以將其Subject
視為Shiro的“使用者”概念。
在
獨立應用程式中呼叫getSubject()
可以返回攜帶特定位置的使用者資料的Subject物件
,並且在伺服器環境(例如,web應用程式)中,它會獲取基於與當前執行緒或傳入請求相關聯的使用者資料的Subject。
現在你有了Subject
,你能用它做什麼?
如果您希望在當前會話中獲取資訊,則可以獲取其會話:
Session session = currentUser.getSession();
session.setAttribute( "someKey", "aValue" );
這session是shiro下的特定的例項,它提供了常規httpSession所用的大部分內容,但是同樣也提供了很多其他東西,並且還有一個很大的區別是,它不需要HTTP環境!
當shiro整合在web應用中,預設情況下,session會基於httpSession構建。但是在非Web環境,像我們的示例中,shiro會預設自動使用企業session管理,這意味著在不同的環境下,你可以通使用同樣的API。這打開了一個全新的應用程式世界,因為任何需要會話的應用程式都不需要被強制使用HttpSession
或EJB有狀態會話Bean。而且,任何客戶端技術現在都可以共享會話資料。
所以現在你可以獲得一個Subject
和他們的Session
。那些真正有用的東西呢,比如檢查是否允許他們做某事,比如檢查角色和許可權?
好吧,我們只能為已知使用者進行檢查。上述的Subject
代表當前使用者,但誰是當前使用者?好吧,他們是匿名的 - 也就是說,直到他們至少登入一次。所以,讓我們這樣做:
if ( !currentUser.isAuthenticated() ) {
//collect user principals and credentials in a gui specific manner
//such as username/password html form, X509 certificate, OpenID, etc.
//We'll use the username/password example here since it is the most common.
UsernamePasswordToken token = new UsernamePasswordToken("lonestarr", "vespa");
//this is all you have to do to support 'remember me' (no config - built in!):
token.setRememberMe(true);
currentUser.login(token);
}
可以看到上述程式碼很簡單。但如果他們的登入嘗試失敗怎麼辦?您可以捕獲各種特定的異常,它們可以準確地告訴您發生了什麼,並允許您相應地處理和做出反應:
try {
currentUser.login( token );
//if no exception, that's it, we're done!
} catch ( UnknownAccountException uae ) {
//username wasn't in the system, show them an error message?
} catch ( IncorrectCredentialsException ice ) {
//password didn't match, try again?
} catch ( LockedAccountException lae ) {
//account for that username is locked - can't login. Show them a message?
}
... more types exceptions to check if you want ...
} catch ( AuthenticationException ae ) {
//unexpected condition - error?
}
您可以檢查許多不同的一場,或者可以自定義異常。
好的,所以到現在為止,我們已經登入了使用者。我們還能做什麼?
他們是誰:
//print their identifying principal (in this case, a username):
log.info( "User [" + currentUser.getPrincipal() + "] logged in successfully." );
他們是否具有特定的角色:
if ( currentUser.hasRole( "schwartz" ) ) {
log.info("May the Schwartz be with you!" );
} else {
log.info( "Hello, mere mortal." );
}
他們是否有權對某種型別的實體採取行動
if ( currentUser.isPermitted( "lightsaber:weild" ) ) {
log.info("You may use a lightsaber ring. Use it wisely.");
} else {
log.info("Sorry, lightsaber rings are for schwartz masters only.");
}
例項級許可權檢查 - 能夠檢視使用者是否能夠訪問型別的特定例項:
if ( currentUser.isPermitted( "winnebago:drive:eagle5" ) ) {
log.info("You are permitted to 'drive' the 'winnebago' with license plate (id) 'eagle5'. " +
"Here are the keys - have fun!");
} else {
log.info("Sorry, you aren't allowed to drive the 'eagle5' winnebago!");
}
最後,當用戶完成使用該應用程式後,他們可以登出:
currentUser.logout(); //removes all identifying information and invalidates their session too.
完整的 Tutorial.java
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authc.*;
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;
public class Tutorial {
private static final transient Logger log = LoggerFactory.getLogger(Tutorial.class);
public static void main(String[] args) {
log.info("My First Apache Shiro Application");
Factory<SecurityManager> factory = new IniSecurityManagerFactory("classpath:shiro.ini");
SecurityManager securityManager = factory.getInstance();
SecurityUtils.setSecurityManager(securityManager);
// get the currently executing user:
Subject currentUser = SecurityUtils.getSubject();
// Do some stuff with a Session (no need for a web or EJB container!!!)
Session session = currentUser.getSession();
session.setAttribute("someKey", "aValue");
String value = (String) session.getAttribute("someKey");
if (value.equals("aValue")) {
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 token = new UsernamePasswordToken("lonestarr", "vespa");
token.setRememberMe(true);
try {
currentUser.login(token);
} catch (UnknownAccountException uae) {
log.info("There is no user with username of " + token.getPrincipal());
} catch (IncorrectCredentialsException ice) {
log.info("Password for account " + token.getPrincipal() + " was incorrect!");
} catch (LockedAccountException lae) {
log.info("The account for username " + token.getPrincipal() + " is locked. " +
"Please contact your administrator to unlock it.");
}
// ... 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):
log.info("User [" + currentUser.getPrincipal() + "] logged in successfully.");
//test a role:
if (currentUser.hasRole("schwartz")) {
log.info("May the Schwartz be with you!");
} else {
log.info("Hello, mere mortal.");
}
//test a typed permission (not instance-level)
if (currentUser.isPermitted("lightsaber:weild")) {
log.info("You may use a lightsaber ring. Use it wisely.");
} else {
log.info("Sorry, lightsaber rings are for schwartz masters only.");
}
//a (very powerful) Instance Level permission:
if (currentUser.isPermitted("winnebago:drive:eagle5")) {
log.info("You are permitted to 'drive' the winnebago with license plate (id) 'eagle5'. " +
"Here are the keys - have fun!");
} else {
log.info("Sorry, you aren't allowed to drive the 'eagle5' winnebago!");
}
//all done - log out!
currentUser.logout();
System.exit(0);
}
}
相關推薦
Apache Shiro(二)第一個shiro應用程式
如果您是Apache Shiro的新手,這個簡短的教程將向您展示如何使用Apache Shiro構建一個最初步的,簡單的應用程式。我們將一路上討論Shiro的核心概念,以幫助您熟悉Shiro的設計和API。 如果您不想在學習本教程時實際編輯檔案,則可以獲得幾乎相同的示例
Spring Boot 學習筆記(二)第一個 Spring boot 程式
SpringBoot程式建立方式 1、建立一個Spring boot專案 1) 可以採用方式一: 使用 eclipse 的 Spring Tool Suite (STS) 外掛/或者 IDEA 自帶的外掛建立;  
Net Core 學習入門(三)---------第一個web應用程式
使用vs2017,新增一個新專案-asp.net core web應用程式。 結構如圖, wwwroot放了網站的靜態資源如css、js、image檔案; appsetting.json是應用程式的配置檔案。 bu
成長記錄貼之springboot+shiro(二) {完成一個完整的許可權控制,詳細步驟}
近一個月比較忙,公司接了一個新專案,領導要求用shiro進行安全管理,而且全公司只有我一個java,從專案搭建到具體介面全是一個人再弄。不過剛好前段時間大概學習了一下shiro的使用,還算順利。 &n
如何為Apache JMeter開發外掛(二)——第一個JMeter外掛
本篇將開啟為JMeter開發外掛之旅,我們選擇以Function(函式)元件作為外掛開發的入手物件,在前面的章節我們將其劃分為非GUI元件,選擇它的理由不僅僅是因為Function外掛在開發方面是極簡的,而且在實際運用JMeter執行測試時,對於Function
SpringBoot (二)第一個SpringBoot專案——HelloWord
上一篇文章我們有介紹了SpringBoot的作用以及核心原理,還有介紹了與SpringCloud和SpringMVC的關係,這篇文章我們就開始第一個SpringBoot專案——HelloWord 1.建立專案 File——>New——>Other
IOS 初級開發入門教程(二)第一個HelloWorld工程及StoryBoard使用
前言 在IOS開發之路的博文第一章:(IOS開發入門介紹http://blog.csdn.net/csdn_aiyang)我大致系統介紹了有關IOS的一些基礎認識,如果不完全都記住沒關係,以後我們開發之路還很長,慢慢的自然而然就明白是怎麼回事了。這一篇我將手把手教大家完成第
使用IDEA進行Spark開發(二)-第一個scala程式
上面一篇文章博主已經給大家演示好了如何去配置一個本機的scala開發環境,現在我們就一起去寫我們的第一個spark開發的scala程式吧! 開啟IDEA,選擇建立一個新的工程檔案。 點選scala,建立一個scala工程 輸入我們程式名稱——word
osgi 學習系列(二)第一個plug-in專案
New-->Plug-in Project 如果你的bundle在啟動和關閉的時候需要被通知,可以勾上Options中的第一個,實現BundleActivator介面,Finish後我們的第一個Bundle就建好了 Bundle中最重要的一個檔案就是bundle
JavaWeb(三)第一個 WEB 應用程序
webapps ima show 資源 部署 目錄 層次 apt 分享 1、Web程序結構 一個 web 應用程序是由一組 Servlet,HTML 頁面,類,以及其它的資源組成的運行在 web 服務器上的完整的應用程序,以一種結構化的有層次的目錄形式存在。 組成 web
iOS應用開發入門(1)——第一個iOS應用
最近因為工作的原因,需要學習iOS應用開發。 本人現在在公司負責的是智慧裝置聯網模組,所謂的智慧裝置聯網,就是讓一些智慧裝置(多半是沒用螢幕的裝置)連上wifi,因為沒有螢幕,所以無法像手機和平板那樣通過螢幕選擇wifi和輸入wifi密碼,這個時候就需要手機來輔助,將手機上
iOS菜鳥成長筆記(1)——第一個iOS應用
前言:陽光小強最近抽時間學習iOS開發,在學習過程中發現了很多有趣的東西也遇到了很多問題,為了在學習過程中能和大家交流,記錄下學習的心得和學習成果,所以就有了這一個系列文章,希望這一系列文章能形成一個系統性的東西,讓和我一樣剛步入iOS開發的朋友少走彎路,用最少的時間獲得最大
java學習(1) 第一個java小程式執行解釋
上一篇文章簡單運行了一個java的小程式,其中有兩個命令一個是javac另一個是java。簡單解釋一下這兩個命令的作用,如有不正確的地方請大家多多指教。 javac是java的編譯命令,通過javac編譯原始檔後會生成**.class檔案,這是一種與平臺無關的
Pro ASP.NET Core MVC(二)【第一個MVC 應用程式】
學習一個軟體開發框架的最好方法是跳進他的內部並使用它。在本章,你將用ASP.NET Core MVC建立一個簡單的資料登入應用。我將它一步一步地展示,以便你能看清楚怎樣構建一個MVC 應用程式。為了讓事情簡單,我跳過了一些技術細節,但是不要擔心,如果你是一個MV
Apache Shiro(二)——認證與授權
Apache Shiro 是一個強大而靈活的開源安全框架,它乾淨利落地處理身份認證,授權,企業會話管理和加密。 Shiro 架構如下圖所示: 認證 身份認證 身份驗證:一般需要提供如身份 ID 等一些標識資訊來表明登入者的身份,如提供 email,使用者名稱/密碼來證明。在
Spring Boot系列(十五) 安全框架Apache Shiro(二)快取-基於Hazelcast的分散式快取
通常所說的“分散式”、“叢集服務”、“網格式記憶體資料”、“分散式快取“、“彈性可伸縮服務”這些非常牛逼高大上名詞拿到哪都是ITer裝逼的不二之選。在Javaer的世界,有這樣一個開源專案,只需要引入一個jar包、只需簡單的配置和編碼即可實現以上高階技能,他就是
Shiro(二)——Shiro授權
一、程式碼 package first.ShiroTest; import org.apache.shiro.SecurityUtils; import org.apache.shiro.authc.UsernamePasswordToken; import org.apache.shi
Machine Learning第九講【異常檢測】-- (二)建立一個異常檢測系統
一、Developing and Evaluating an Anomaly Detection System(異常檢測系統的衡量指標) 對於某一演算法,我們可以通過藉助某些數字指標來衡量演算法的好壞,仍舊以飛機引擎的例子來說: 假設有10000個正常的引擎,20個有瑕疵的引擎(異常)
SpringBoot整合shiro(二)自定義sessionManager
傳統結構專案中,shiro從cookie中讀取sessionId以此來維持會話,在前後端分離的專案中(也可在移動APP專案使用),我們選擇在ajax的請求頭中傳遞sessionId,因此需要重寫shiro獲取sessionId的方式。自定義ShiroSessio
【C語言簡單說】二:第一個C語言程式詳解(1)
如有錯誤請給與糾正… 上一個教程只說明瞭第一個C語言程式原始碼中的: printf("Hello Wrold!"); 這行程式碼的含義,現在我們來說說全部程式碼;當然為了各位的方便,我就把那個程式