1. Erstellen Sie ein neues Springboot-Projekt und führen Sie Abhängigkeiten ein
<dependency> <groupId>org.jasig.cas.client</groupId> <artifactId>cas-client-support-springboot</artifactId> <version>3.6.2</version></dependency>
2. Konfigurieren Sie die Datei application.properties
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); }}
4. codetiler im Browser. org:8443/cas und melden Sie sich an, geben Sie die Anwendungsadresse http://demo.codetiler.org:8081 erneut in den Browser ein und der Browser fordert sie direkt an, eine erneute Anmeldung ist nicht erforderlich.
Das obige ist der detaillierte Inhalt vonSo erstellen Sie einen CAS-Client basierend auf Springboot. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!