in spring security can i create with table name xyz instead of table name users.Code:<authentication-manager> <authentication-provider> <jdbc-user-service data-source-ref="dataSource" users-by-username-query=" select username,password, enabled from users where USERNAME=?" authorities-by-username-query=" select u.username, ur.authority from users u, authorities ur where u.user_id = ur.user_id and u.username =? " /> </authentication-provider> </authentication-manager>


Reply With Quote