Anders E. Lillie
Anders E. Lillie
Hi @jzheaux , thank you for your quick respond. That is true, but the issue is that I do not have the possibility to _add_ one. If the request URL...
When supporting Spring Session with OIDC Backchannel Logout you also need to consider how the `OidcSessionRegistry` should be notified about removing the stored session information, as it is expected to...
Sample from my code to implement this: ``` /** * OIDC Session registry for a clustered server setup with multiple nodes, * which saves user session information in a central...
@xiechangning20 , sure, here you go: ``` @Repository public interface OidcUserSessionRepository extends ListCrudRepository { Optional findBySessionId(String sessionId); } @Getter @Setter @Entity @Table public class OidcUserSession { @Id @GeneratedValue(strategy = GenerationType.UUID)...