- Spring Boot 2.4.3
- JDK 1.8
- redis 6.0.9
- hello-sso-server:这个模块提供sso服务
- hello-sso-demo:这个模块主要是模拟需要单点登录的系统
-
在两个模块的
application.yml
中的分别配置redis信息 -
修改hosts文件
#模拟跨域 127.0.0.1 hellosso.com 127.0.0.1 client1.com 127.0.0.1 client2.com
-
分别运行
HelloSsoDemoApplication
和HelloSsoServerApplication
-
浏览器访问
http://client1.com:8088/hello
和http://client1.com:8088/hello
-
有关sso单点登录的介绍及运行效果,可以访问http://zsly.xyz/archives/sso 查看