how to create the authentication-manager using database ?
users-by-username-query="SELECT a AS username, b AS password, userstatus AS enabled. this userstatus has multiple values.0,1,2,3...
|
how to create the authentication-manager using database ? users-by-username-query="SELECT a AS username, b AS password, userstatus AS enabled. this userstatus has multiple values.0,1,2,3... |
|||
|
|
|
use if for query (assumption: userstatus 0 is disabled and another is enabled):
u can add another if statement inside. |
|||
|
|
|
What do the values in your userstatus filed represent? It is more than a binary enabled/disabled flag, but it's unclear what it exactly means. Check if you can map these values to the properties of the
Other components of Spring Security will then make sure that the user can only get authenticated if it is enabled, not locked, etc. |
|||||
|