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

溫馨提示×

溫馨提示×

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

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

Springboot安全框架整合SpringSecurity的示例分析

發布時間:2021-09-15 10:45:46 來源:億速云 閱讀:263 作者:小新 欄目:開發技術

這篇文章主要介紹了Springboot安全框架整合SpringSecurity的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

1.工業級安全框架介紹

Spring Security基于Spring開發,項目中如果使用Spring作為基礎,配合Spring Security做權限更加方便,而Shiro需要和Spring進行整合開發。因此作為spring全家桶中的Spring Security在java領域很常用。

2.建議搭建Spring Security環境         

2.1在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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.example</groupId>
    <artifactId>springsecurityReview</artifactId>
    <version>1.0-SNAPSHOT</version>
    <parent>
        <artifactId>spring-boot-dependencies</artifactId>
        <groupId>org.springframework.boot</groupId>
        <version>2.5.4</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
    </dependencies>
</project>

2.2創建Handler類 

package com.example.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class Handler {
    @GetMapping("/index")
    public String index(){
        return "index";
    }
}

2.3創建簡單的html和配置相關thymeleaf的路徑

Springboot安全框架整合SpringSecurity的示例分析          

2.4最后再加個啟動類,那么我們的整合測試就完成勒

package com.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class,args);
    }
}

2.5成果展示 用戶名默認user,密碼則隨機生成的這串數字

Springboot安全框架整合SpringSecurity的示例分析

Springboot安全框架整合SpringSecurity的示例分析 

3.進階版使用        

3.1用戶名和密碼自定義

Springboot安全框架整合SpringSecurity的示例分析

3.2在config包下創建Encoder進行密碼的校驗和轉碼操作

將密碼轉成字符串形式,并通過match方法驚醒校驗。 

Springboot安全框架整合SpringSecurity的示例分析

3.3賦予賬號角色權限 

package com.example.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;
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
    //角色和資源的關系
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests().antMatchers("/admin").hasRole("ADMIN")
        .antMatchers("/index").access("hasRole('ADMIN') or hasRole('USER') ")
                .anyRequest().authenticated()
        .and()
        .formLogin()
        .loginPage("/login")
        .permitAll()
        .and()
        .logout()
        .permitAll()
        .and()
        .csrf()
        .disable();
     }
    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
       auth.inMemoryAuthentication().passwordEncoder(new MyPasswordEncoder())
       .withUser("user").password(new MyPasswordEncoder()
       .encode("000")).roles("USER")
       .and()
       .withUser("admin").password(new MyPasswordEncoder()
       .encode("123")).roles("ADMIN","USER");
    }
}

最后達到admin賬號能訪問admin.html和index.html

user只能訪問index.html的操作

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Springboot安全框架整合SpringSecurity的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

敦煌市| 兴国县| 炎陵县| 崇礼县| 阿拉善右旗| 佛坪县| 石渠县| 长泰县| 鄂温| 颍上县| 视频| 钟祥市| 孟连| 新绛县| 阳山县| 和静县| 巴彦淖尔市| 德令哈市| 赤峰市| 湖口县| 台州市| 新野县| 西林县| 台山市| 祁东县| 兰溪市| 牙克石市| 闻喜县| 平昌县| 张家界市| 淮滨县| 如皋市| 尼勒克县| 牟定县| 海阳市| 嘉义县| 章丘市| 台中县| 浦城县| 湄潭县| 凉城县|