溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

一文教你正確的使用springsecurity

發(fā)布時(shí)間:2020-11-19 15:21:36 來(lái)源:億速云 閱讀:179 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)一文教你正確的使用springsecurity,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

springsecurity是基礎(chǔ)springboot的,所以創(chuàng)建一個(gè)springboot工程引入依賴(lài)就可以很輕松的整合springsecurity了。(類(lèi)似的權(quán)限管理框架還有shiro)
1. 創(chuàng)建一個(gè)普通的springboot項(xiàng)目(不用勾選任何東西),我這邊使用的springboot版本是2.2.1.RELEASE
依賴(lài)如下:
pom.xml

<dependencies>
  <!--spring web依賴(lài)-->
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
  </dependency>

  <!--spring security依賴(lài)-->
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-security</artifactId>
  </dependency>

  <!--mysql驅(qū)動(dòng)-->
  <dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
  </dependency>

  <!--mybatis-plus-->
  <dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-boot-starter</artifactId>
    <version>3.0.5</version>
  </dependency>

  <!--lombok-->
  <dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
  </dependency>

  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <scope>test</scope>
    <exclusions>
      <exclusion>
        <groupId>org.junit.vintage</groupId>
        <artifactId>junit-vintage-engine</artifactId>
      </exclusion>
    </exclusions>
  </dependency>
</dependencies>

隨意編寫(xiě)一個(gè)測(cè)試的controller即可,eg:
TestController.java

package com.sixteen.springsecurity01.controller;

import java.util.ArrayList;
import java.util.List;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/test")
public class TestController {

  @GetMapping("/hello")
  public String hello(){
    return "hello security";
  }
}

啟動(dòng)springboot服務(wù),打開(kāi)控制臺(tái)會(huì)發(fā)現(xiàn)有這么一串東西

一文教你正確的使用springsecurity

Using generated security password: 649a23c2-fcbc-4f9b-b643-0a0d8167dcf4

當(dāng)你在瀏覽器輸入上面的controller時(shí),會(huì)彈出一個(gè)登錄的界面:如圖

一文教你正確的使用springsecurity

出現(xiàn)這個(gè)界面就說(shuō)明springsecurity整合進(jìn)來(lái)了,springsecurity默認(rèn)有一個(gè)用戶名為user,密碼就是控制臺(tái)那一串649a23c2-fcbc-4f9b-b643-0a0d8167dcf4,輸入之后點(diǎn)擊login in就可以訪問(wèn)到controller了

一文教你正確的使用springsecurity

關(guān)于一文教你正確的使用springsecurity就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI