Spring Security

Hi,

I’m using Spring Boot with the flowable-spring-boot-starter-basic dependency. I would also like to use Spring Security. So I added the flowable-spring-boot-starter-security dependency and would like to know how the IdentityService interacts with Spring Security?

I have seen that they have just added the IdentityServiceUserDetailsService.java on github.

Am I right that this already uses the IdentityService and that I have nothing to configure?

Thanks

Hi,

The IdentityServiceUserDetailsService class indeed just uses the Flowable IdentityService. So by default it uses the Flowable database identity store. If you would like to use another identity store you could implement your own version of the UserDetailsService interface instead of the IdentityServiceUserDetailsService class.

Best regards,

Tijs

Thanks for the response