November 2017
Intermediate to advanced
542 pages
14h 24m
English
The Spring Security setup relies on an o.s.s.cas.ServiceProperties bean in order to store common information about the CAS service. The ServiceProperties object plays a role in coordinating the data exchange between the various CAS components—it is used as a data object to store CAS configuration settings that are shared (and are expected to match) by the varying participants in the Spring CAS stack. You can view the configuration included in the following code snippet:
//src/main/java/com/packtpub/springsecurity/configuration/CasConfig.java static{ System.setProperty("cas.server", "https://localhost:9443/cas"); System.setProperty("cas.server.login", "https://localhost:9443/cas/login"); System.setProperty("cas.service", ...Read now
Unlock full access