91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中如何使用SpringSecurity

發布時間:2021-08-30 09:15:39 來源:億速云 閱讀:113 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關java中如何使用SpringSecurity,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

SpringSecurity

shrio,SpringSecurity:認證,授權(VIP1,vip2…)

  • 功能權限

  • 訪問權限

  • 菜單權限

  • 攔截器,過濾器:大量的原生代碼,冗余

1、pom.xml

 <!--Thymeleaf-->
        <dependency>
            <groupId>org.thymeleaf</groupId>
            <artifactId>thymeleaf-spring5</artifactId>
        </dependency>
        <dependency>
            <groupId>org.thymeleaf.extras</groupId>
            <artifactId>thymeleaf-extras-java8time</artifactId>
        </dependency>

簡介

Spring Security是針對Spring項目的安全框架,也是Spring Boot底層安全模塊默認的技術選型,他可以實現強大的Web安全控制,對于安全控制,我們僅需要引入Spring-boot-starter-security模塊,進行少量的配置,即可實現強大的安全管理!
記住幾個類:

  • WebSecurityConfigurerAdapter: 自定義Security策略

  • AuthenticationManagerBuilder:自定義認證策略

  • @EnableWebSecurity: 開啟WebSecurity模式 @Enablexxxx 開啟某個功能

Spring Security的兩個主要目標是“認證”和“授權”(訪問控制) .

“認證”(Authentication)
“授權”(Authorization)
這個概念是通用的,而不是只在Spring Security中存在。

1、pom.xml
 <!--security-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
2、Security的controller
package com.kuang.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
/*權限驗證的配置類,要先繼承WebSecurityConfigurerAdapter*/
@Configuration
public class SecurityConfig  extends WebSecurityConfigurerAdapter {
    //定義訪問規則:首頁每個人都可以訪問,但是功能也只有特定權限的人才能訪問   鏈式編程
    //授權
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests()
                .antMatchers("/").permitAll()
                .antMatchers("/level1/**").hasRole("vip1")
                .antMatchers("/level2/**").hasRole("vip2")
                .antMatchers("/level3/**").hasRole("vip3");
        //沒有權限默認跳轉到登陸頁面  /login
        http.formLogin();
    }
    //認證
    /* 密碼編碼: BCryptPasswordEncoder()
    不編碼會報下面的錯誤
    * java.lang.IllegalArgumentException: There is no PasswordEncoder mapped for the id "null"
    * */
    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication().passwordEncoder(new BCryptPasswordEncoder())
                .withUser("qin").password(new BCryptPasswordEncoder().encode("111")).roles("vip1","vip2","vip3")
                .and()
                .withUser("aaa").password(new BCryptPasswordEncoder().encode("111")).roles("vip1");
    }
}
3、路徑轉發的controller
package com.kuang.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
@Controller
public class PathController {
    @GetMapping({"/","index"})    //"/""index"都會去到index.html
    public String Toindex(){
        return "index";
    }
    @GetMapping("/toLogin")
    public String Tologin(){
        return "views/login";
    }
    @GetMapping("/level1/{id}")    //@PathVariable獲得url的占位符里面的值
    public String ToView(@PathVariable("id")int id){
        return "views/level1/"+id;
    }
    @GetMapping("/level2/{id}")
    public String ToView2(@PathVariable("id")int id){
        return "views/level2/"+id;
    }
    @GetMapping("/level3/{id}")
    public String ToView3(@PathVariable("id")int id){
        return "views/level3/"+id;
    }
}

當然也可以在數據庫中拿信息

java中如何使用SpringSecurity

源碼分析

沒有權限的話會自動轉發到/login

//沒有權限默認跳轉到登陸頁面 /login
http.formLogin();

java中如何使用SpringSecurity

//開啟注銷
http.logout();

java中如何使用SpringSecurity

注銷及權限控制

 <!--thymeleof整合security-->
        <dependency>
            <groupId>org.thymeleaf.extras</groupId>
            <artifactId>thymeleaf-extras-springsecurity5</artifactId>
        </dependency>
xmlns:sec=http://www.thymeleaf.org/extras/spring-security

用spring-security實現用戶登錄后顯示用戶角色的信息

1、導入依賴thymeleof整合security
 <!--thymeleof整合security-->
        <dependency>
            <groupId>org.thymeleaf.extras</groupId>
            <artifactId>thymeleaf-extras-springsecurity5</artifactId>
        </dependency>
2、html命名空間
<html lang="en" xmlns:th="http://www.thymeleaf.org"
      xmlns:sec="http://www.thymeleaf.org/extras/spring-security">
3、根據用戶的登錄狀態進行判斷顯示該有的信息

java中如何使用SpringSecurity

4、根據源碼寫表單name屬性

java中如何使用SpringSecurity

java中如何使用SpringSecurity

5、實現有什么權限顯示什么樣的信息

java中如何使用SpringSecurity

6、注銷logout-404

java中如何使用SpringSecurity

關于“java中如何使用SpringSecurity”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

尼玛县| 海丰县| 新营市| 峨边| 麦盖提县| 红河县| 呼伦贝尔市| 印江| 绍兴县| 扶绥县| 高雄市| 衢州市| 邵阳市| 大埔区| 稷山县| 永吉县| 河津市| 司法| 公主岭市| 栾川县| 金华市| 红桥区| 四平市| 和硕县| 天门市| 龙海市| 九龙城区| 湄潭县| 福建省| 女性| 沅陵县| 辛集市| 资中县| 额尔古纳市| 通州区| 苍梧县| 万全县| 平潭县| 衡东县| 特克斯县| 霍州市|