springboot +vue+ 集成cas


            org.jasig.cas.client
            cas-client-support-springboot
            3.6.2
        
cas:
  serverUrlPrefix: https://idm-service/cas
  clientHostUrl: http://idm-client
  serverLoginUrl: https://idm-service/cas/login
  validation-type: CAS
  validationUrlPatterns: /token/login

配置说明:

cas:
  serverUrlPrefix: https://idm-service/cas #ticket票据验证service前缀
  clientHostUrl: http://idm-client #tikcet票据验证客户端服务前缀
  serverLoginUrl: https://idm-service/cas/login #cas服务端登陆地址
  validation-type: CAS #启动cas20
  validationUrlPatterns: /token/login  #客户端ticket票据验证方法

@SpringBootApplication(exclude = DruidDataSourceAutoConfigure.class)
@EnableCasClient
public class M

你可能感兴趣的:(spring,boot,java,spring,cas)