[SpringSecurity]HelloWorld入门案例

Posted 唐火

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[SpringSecurity]HelloWorld入门案例相关的知识,希望对你有一定的参考价值。

入门案例

  • 第一步 创建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
默认密码在控制台自动输出

登陆进去后我们可以看到:

以上是关于[SpringSecurity]HelloWorld入门案例的主要内容,如果未能解决你的问题,请参考以下文章

SpringSecurity——基本原理

SpringSecurity框架教程-简介与SpringSecurity框架教程-入门案例准备工作

SpringSecurity坑

轻松上手SpringSecurity,OAuth,JWT

轻松上手SpringSecurity,OAuth,JWT

SpringSecurity 自定义表单登录