Spring Security核心功能:
认证:(你是谁)
验证:(你能干什么?即拥有哪些权限)
话不多说,开干吧!!
一、创建maven项目
二、加入依赖
<!--加入 spring boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-parent</artifactId>
<version>2.0.6.RELEASE</version>
</parent>
<!--web 开发相关依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--spring security-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
三、创建一个启动类
@SpringBootApplication
public class FirstApplication {
public static void main(String[