1. 程式人生 > 其它 >Spring Security的使用第一章 搭建環境及簡單配置

Spring Security的使用第一章 搭建環境及簡單配置

Maven專案的Pom檔案中新增maven依賴

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
<dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-test</artifactId> <scope>test</scope> </dependency>

  

然後啟動專案

啟動專案可以看到登入的密碼

Spring security預設自帶首頁,我們可以通過 user賬號進行登入

如果需要自己定義登入的使用者名稱和密碼我們可以在配置檔案中新增

spring:
  security:
    user:
      name: root
      password: root

此時我們新建一個請求介面

@RestController
@Slf4j
public class test {

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

如果我們直接訪問/hello則會跳轉到登入介面,我們登入後就可以訪問/hello了