# cas-util **Repository Path**: fesine/cas-util ## Basic Information - **Project Name**: cas-util - **Description**: spring boot 工程cas单点登录的另一种实现。(也无法实现单点退出) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-12-14 - **Last Updated**: 2020-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 使用方法 #### 1、在spring boot 工程中添加依赖 com.fesine cas-util 0.0.1-SNAPSHOT #### 2、在spring boot 启动主类上加上组件包扫描 前面固定"com.fesine.cas",后面"xxx.xxx.xxx"为自己工程的包路径 @ComponentScan(basePackages = {"com.fesine.cas","xxx.xxx.xxx"}) #### 3、在yml文件中添加如下参数配置 cas: sign-out-filters: /logout auth-filters: / validate-filters: / request-wrapper-filters: / assertion-filters: / redirect-after-validation: true use-session: true cas-server-login-url: https://server.fesine.com:8443/cas/login cas-server-url-prefix: https://server.fesine.com:8443/cas server-name: http://client1.fesine.com:8085/batch-admin #### 4、同样无法实现单点退出的问题