61 springboot Security 简单实用教程

1.pom maven jar


    org.springframework.boot
    spring-boot-starter-parent
    2.1.6.RELEASE
    
 


    org.springframework.boot
    spring-boot-starter-security


application.yml配置:

server:
     tomacat:
          uri-encoding:  utf-8
     port:   8080



启动项目成功后访问:http://127.0.0.1:8080
可以看到,security已经生效了,这里的登录界面是 spring security 自带的;


61 springboot Security 简单实用教程_第1张图片
image

你可能感兴趣的:(61 springboot Security 简单实用教程)