In my Spring Boot based web application there should be two authentication options. On the one hand, single sign-on should be used, which is the default way. On the other hand, a form-based authentication should also be offered. This is commonly known as Mixed Authentication.
If the form-based authentication is used, server-side known user accounts are checked. Single sign-on uses the Windows logon.
I could already successfully integrate WAFFLE as a single sign-on component into the server application and used the example of mgoldgeier as a template.
There are examples of Mixed Authentication with WAFFLE related to Tomcat (here and here), but unfortunately I couldn't find any code related to Spring Boot or Spring Security.
I'd love it if someone could give me an example!