您好,登錄后才能下訂單哦!
這篇“基于springboot怎么搭建CAS Client客戶端”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“基于springboot怎么搭建CAS Client客戶端”文章吧。
1.新建springboot項目并引入依賴
<dependency> <groupId>org.jasig.cas.client</groupId> <artifactId>cas-client-support-springboot</artifactId> <version>3.6.2</version></dependency>
2.配置@EnableCasClient注解
package com.codetiler.demo;import org.jasig.cas.client.boot.configuration.EnableCasClient;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplication@EnableCasClientpublic class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); }}
3.配置application.properties文件
server.port=8081#cas服務端配置cas.server-url-prefix=http://cas.codetiler.org:8443/cascas.server-login-url=http://cas.codetiler.org:8443/cas/login#cas客戶端配置cas.client-host-url=http://demo.codetiler.org:8081cas.validation-type=CAS3
4.在瀏覽器中輸入認證服務端的地址http://cas.codetiler.org:8443/cas并登錄,再次在瀏覽器中輸入應用的地址http://demo.codetiler.org:8081瀏覽器直接請求到,不需要再次登錄。
以上就是關于“基于springboot怎么搭建CAS Client客戶端”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。