Skip to content

sso test single sign on,use spring-boot,sa-token,cookie domain,redis storage

Notifications You must be signed in to change notification settings

netbuffer/sso-demo

Repository files navigation

sso-demo

基于 sa-token 实现单点登录系统

step

  1. edit C:\Windows\System32\drivers\etc\hosts
    添加域名映射记录到hosts中
127.0.0.1 sso-server.com
127.0.0.1 sso-client-system1.com
127.0.0.1 sso-client-system2.com
  1. 访问http://sso-client-system1.com:17001/ 页面显示未登录

    点击登录按钮,跳转到sso-server认证中心
  2. 重定向到sso-server认证中心

    输入帐号密码点击登录,认证成功后会回跳到sso-client-system1应用
  3. 此时回跳到sso-client-system1应用,sso-client-system1应用自身认证通过,回显登录成功
  4. 访问http://sso-client-system2.com:17002/ 页面显示未登录
    点击登录按钮,跳转到sso-server认证中心,此时sso-server检测到登录态,携带ticket直接回跳回来
  5. 页面回跳回来,sso-client-system2应用自身解析出ticket参数,再调用认证中心的检测ticket接口校验,检测完成后认证成功,页面回显登录成功