欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

Spring-Security權(quán)限管理框架(1)——根據(jù)角色權(quán)限登錄

Spring-Security框架學習總結(jié)
前提:在做演示之前,我們先創(chuàng)建項目,并將項目導入IDE
Spring-Security權(quán)限管理框架(1)——根據(jù)角色權(quán)限登錄
測試項目是否運行成功,成功后進行正式開始學習
一.Case1:只要能登錄即可
目標:我們在訪問項目是訪問index可以直接進入,不需要攔截,訪問其他路徑是需要進行登錄驗證,并且允許登錄用戶注銷和使用表單進行登錄,不攔截前臺js,css,image等文件,我們在內(nèi)存中設置了一個admin用戶,可以進行登錄
直接上代碼(代碼中會有注釋):
SecuDemoApplication:

目前創(chuàng)新互聯(lián)公司已為超過千家的企業(yè)提供了網(wǎng)站建設、域名、網(wǎng)站空間、網(wǎng)站運營、企業(yè)網(wǎng)站設計、拜城網(wǎng)站維護等服務,公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

package com.dhtt.security.SecuDemo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
@EnableAutoConfiguration
public class SecuDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(SecuDemoApplication.class, args);
    }

    @RequestMapping("/index")
    public String hello() {
        return "hello Spring boot....";

    }

    @RequestMapping("/home")
    public String home() {
        return "this my home....";

    }
}

SpringSecruityConfig:

package com.dhtt.security.SecuDemo;

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.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

@Configuration
@EnableWebSecurity
public class SpringSecruityConfig extends WebSecurityConfigurerAdapter{

    /**
     * HTTP請求攔截處理
     */
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests()
        .antMatchers("/index").permitAll()  //主路徑直接請求
        .anyRequest().authenticated()    //請他請求都要驗證
        .and()
        .logout().permitAll()   //允許注銷
        .and()
        .formLogin();  //允許表單登錄
        http.csrf().disable();  //關閉csrf的認證
    }

    /**
     * 處理前端文件,攔截忽略
     */
    @Override
    public void configure(WebSecurity web) throws Exception {
        web.ignoring().antMatchers("/js/**","/css/**","/image/**");
    }

    /**
     * 設置內(nèi)存中的用戶admin
     */
    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication().withUser("admin").password("123456").roles("ADMIN");
    }
}

然后我們啟動項目,在前臺訪問路徑
(1)訪問http://localhost:8080/index成功
Spring-Security權(quán)限管理框架(1)——根據(jù)角色權(quán)限登錄

(2)訪問http://localhost:8080/home:
我們發(fā)現(xiàn)前臺會為我們跳轉(zhuǎn)到登錄界面,接下來我們進行登錄驗證,我們發(fā)現(xiàn)登錄界面沒有跳轉(zhuǎn),證明登錄失敗,此時我們觀察后臺
Spring-Security權(quán)限管理框架(1)——根據(jù)角色權(quán)限登錄

發(fā)現(xiàn)后臺報錯
(3)報錯問題解決:原因是spring boot的版本和Spring Security的版本問題,我們需要提供一個PasswordEncorder實例
MyPasswordEncoder:

package com.dhtt.security.SecuDemo;

import org.springframework.security.crypto.password.PasswordEncoder;

public class MyPasswordEncoder implements PasswordEncoder{

    @Override
    public String encode(CharSequence rawPassword) {
        return rawPassword.toString();
    }

    @Override
    public boolean matches(CharSequence rawPassword, String encodedPassword) {
        return encodedPassword.equals(rawPassword);
    }

}

SpringSecruityConfig中修改部分:

/**
     * 設置內(nèi)存中的用戶admin
     */
    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication().passwordEncoder(new MyPasswordEncoder())
        .withUser("admin").password("123456").roles("ADMIN");
    }

現(xiàn)在再次運行項目訪問/home,我們發(fā)現(xiàn)登錄成功,頁面成功訪問
Spring-Security權(quán)限管理框架(1)——根據(jù)角色權(quán)限登錄
Case2:有指定的角色,每個角色都有指定的權(quán)限
(1)目標:我們新增一個USER,對于ADMIN權(quán)限可以訪問所有地址,但是user的權(quán)限規(guī)定其不能訪問/roleAuth,代碼:
SpringSecruityConfig中修改部分:

/**
     * 設置內(nèi)存中的用戶admin
     */
    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication().passwordEncoder(new MyPasswordEncoder())
        .withUser("admin").password("haha1996").roles("ADMIN");
        auth.inMemoryAuthentication().passwordEncoder(new MyPasswordEncoder())
        .withUser("zhangsan").password("123456").roles("ADMIN");
        auth.inMemoryAuthentication().passwordEncoder(new MyPasswordEncoder())
        .withUser("username1").password("password").roles("USER");
    }

SecuDemoApplication:這里我們添加了新的注解

package com.dhtt.security.SecuDemo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
@EnableAutoConfiguration
@EnableGlobalMethodSecurity(prePostEnabled=true)
public class SecuDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(SecuDemoApplication.class, args);
    }

    @RequestMapping("/index")
    public String hello() {
        return "hello Spring boot....";

    }

    @RequestMapping("/home")
    public String home() {
        return "this my home....";

    }

    @RequestMapping("/roleAuth")
    @PreAuthorize("hasRole('ROLE_ADMIN')")
    public String role() {
        return "HELLO SPRING SECURITY....";

    }
}

經(jīng)測試運行結(jié)果與我們的預期相同,我們使用admin進行登錄,地址均可訪問,當我們使用user進行登錄時,我們發(fā)現(xiàn)/roleAuth路徑訪問失敗,沒有權(quán)限
Spring-Security權(quán)限管理框架(1)——根據(jù)角色權(quán)限登錄

                                待續(xù)。。。

新聞名稱:Spring-Security權(quán)限管理框架(1)——根據(jù)角色權(quán)限登錄
網(wǎng)址分享:http://aaarwkj.com/article8/ipoiop.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設計公司域名注冊、網(wǎng)站收錄、網(wǎng)站設計品牌網(wǎng)站設計、靜態(tài)網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站托管運營
国产欧美日韩亚洲综合在线| 翔田千里精品久久一区二| 欧美黄色一区二区在线观看| 欧美人妻不卡一区二区久久| 天天精品国产av九九久久久| 99久久热这里只有精品| 久久精品国产视频在热| 亚洲成人午夜免费在线观看| 亚洲一区二区中文字幕av| 精品久久一区麻豆香蕉| 国产亚洲精品久久久9| 亚洲欧洲一区二区中文字幕| 欧美黄片免费在线视频| 日韩精品一区二区一牛| 中文字幕免费不卡一区| 漂亮人妻被中出中文字幕| 老湿机午夜十分钟视频| 国内校园性猛交视频网站| 日本亚洲一区二区在线| 日产中文乱码字幕无线观看| 日韩精品一区二区三区四区在线视频| 91人妻一区二区三区久久| 国内精品偷拍一区二区三区| 在线欧美日韩一区二区三区| 一区二区三区av天堂| 99热这里66只有精品| 国产精品蜜臀av在线一区| 不卡一区二区三区av电影| 精品裸足人妻少妇二区三区| 日本一区二区免费高清不卡| 久久久久精品国产亚洲av影院| 欧美亚洲清纯唯美另类| 日本亚洲一区二区在线| 精品视频偷拍一区二区三区| 女同蝴蝶在线看完整版| 亚洲国产剧情中文字幕| 夜夜春国产精品不卡一区二区| 日韩一区二区三区视频在线看| 国产日韩欧美另类综合| 国产区青青操自拍视频| 日韩欧美亚洲精品中文字幕αv|