i want to implement spring security login and remember me
and i am confused between using jdbc-user-service or user-service-ref
as my authentication-provider
can anyone please describe to me what is the difference between both, when to go for one or the other, coz what i can see is that both are used to lookup user.
i want to implement spring security login and remember me and i am confused
Share
<jdbc-user-service>configures a built-inJdbcDaoImplas a source of user details. It loads user detials from predefined database tables using JDBC.If you need to customize user lookup, you can create a custom
UserDetailsServiceinstead and reference it withuser-service-ref. It can be useful in the following cases:UserDetailsobjects returned byUserDetailsService