Shiro study notes
Shiro takes notes, Xiaobai records the learning process, and the boss takes a detour
I What is Shiro
Shiro, like Security, is a Security framework. It can help us realize authentication, authorization, MD5 encryption, caching and other functions.
Shiro has three elements: Subject, Security Manager and Realm.
Subject: the current subject ...
Added by crispytown on Mon, 07 Mar 2022 18:40:45 +0200
Spring Boot ------- integrated Shiro
Spring Boot (14) -- Integrated Shiro
23. Introduction to Shiro
23.1 what is Shiro
Apache Shiro is a security (permission) framework for JavaShiro can easily develop good enough applications, which can be used not only in Java se environment, but also in Java EE environmentShiro can complete: authentication, authorization, encryption, session ...
Added by kinadian on Mon, 07 Mar 2022 14:32:32 +0200
springboot+shiro+jwt+redis+cache to achieve stateless token login (perfect article!!)
Reprinted from: https://blog.csdn.net/stilll123456/article/details/88370355
The original blogger has been reorganized into the following personal blog:
SpringBoot integration shiro+jwt+redis - stateless token login (I) overviewSpringBoot integration shiro+jwt+redis - stateless token login (II) authorizationSpringBoot integration shiro+jwt+red ...
Added by ReeceSayer on Fri, 04 Mar 2022 05:22:13 +0200
Shiro + JWT + Spring Boot Restful
Characteristic
Fully using Shiro's annotated configuration to maintain high flexibility. Give up cookies, Session, and use JWT for authentication to fully implement stateless authentication. JWT keys support expiration times. Provides support across domains. Dead work
Before starting this tutorial, make sure you are familiar with the followin ...
Added by ex247 on Thu, 03 Mar 2022 20:05:44 +0200
61. Introduction to shiro zero Foundation (Foundation completion source code to be supplemented)
shiro (java security framework)
1 Introduction
Apache Shiro is a security framework for Java. At present, more and more people use Apache Shiro because it is quite simple. Compared with Spring Security, it may not be as powerful as Spring Security, but it may not need so complex things in actual work, so using a small and simple Shiro is enou ...
Added by scuba on Wed, 02 Mar 2022 15:12:18 +0200
Self study Shiro framework notes
Introduction to Shiro framework
1, Shiro overview
1.1 what is Shiro
. Apache Shiro is a powerful and easy-to-use Java security framework, which provides functions such as authentication, authorization, encryption and session management. Shiro can provide comprehensive security management services for any application. It can be used not only ...
Added by kraen123 on Mon, 14 Feb 2022 14:34:10 +0200
Security framework shiro
1, What is shiro
Apache Shiro is a powerful and easy-to-use Java security framework that performs authentication, authorization, password, and session management. With Shiro's easy to understand API, you can get any application quickly and easily, from the smallest mobile application to the largest network and enterprise application. Develop ...
Added by rokchik on Thu, 10 Feb 2022 09:09:58 +0200
Shiro+JWT realizes authentication and authorization in the front and rear end separation project
Disadvantages of traditional Session authentication
In the last lesson, we used Shiro for user authentication. The internal identification is Subject through Session, and the server identifies cookies that depend on JSESSIONID. However, in the front-end and back-end separated projects, the front-end project will run separately, and the server ...
Added by codebuilder on Thu, 10 Feb 2022 04:31:01 +0200
shiro@RequiresPermission Verification implementation
shiro-spring
Annotation verification of shiro with the help of Spring AOP feature
After introducing shiro spring dependency, be sure to inject AuthorizationAttributeSourceAdvisor to verify shiro annotation with spring aop
@Bean
public AuthorizationAttributeSourceAdvisor authorizationAttributeSourceAdvisor(SecurityManager securit ...
Added by ow-phil on Tue, 08 Feb 2022 01:58:11 +0200
116.Shiro: basic concept of Shiro, basic use of Shiro authentication and authorization
catalogue
1, Basic concept of permission
1. What is permission management
2. What is identity authentication
3. What is authorization
2, Basic knowledge of Shiro
1. What is Shiro
2. Core architecture of Shiro
3, Shrio first program user authentication
1. Basic concepts
(1) Subject: subject
(2) Principal: identity information
(3) Cre ...
Added by justinjkiss on Mon, 07 Feb 2022 23:07:33 +0200