入门案例
-
第一步 创建springboot工程
-
第二步 引入相关依赖
<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>
- 第三步 编写controller进行测试
@RestController
@RequestMapping("/test")
public class TestController {@GetMapping("hello")public String hello(){return "hello security";}}
测试:
默认用户名:user
默认密码在控制台自动输出
登陆进去后我们可以看到: