Hi Tom, I do not remember everything by heart but basically it is: 1. Provide impl of Spring Security's UserDetailsService and make it a @Bean 2. In your AuthenticatedWebSession#authenticate() impl use Spring Security's Authentication to do the work. It was something like SecurityContextHolder.getContext().getAuthentication().autheticate(new UsernamePasswordAuthentication(username, password))
In Spring Security's config (HttpSecurity) you need to tell SS what is the url to your login and logout pages, and that you want to enable "rememberMe" functionality. You can use both SS and/or Wicket to authenticate access to pages and resources by their mount paths. On Wed, Apr 18, 2018 at 5:58 PM, Tom Götz <[email protected]> wrote: > Hi! > > Does anyone have a working example for an integration of Spring Security > and wicket-auth-roles? We currently use Wicket 7.9.0 and Spring Boot 2.x … > > We’d like to authenticate users via a login form (SignInPanel) and also > use a „remember me“ cookie based authentication. > > Anyone? > > > Cheers, > Tom > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
