Hi,
I wanted to know if all Spring Security tables are needed. If not which are ones are needed. See the tables below.
USERS, AUTHORITIES, GROUPS, GROUP_AUTHORITIES, AND GROUP_MEMBERS
Thanks
Hi,
I wanted to know if all Spring Security tables are needed. If not which are ones are needed. See the tables below.
USERS, AUTHORITIES, GROUPS, GROUP_AUTHORITIES, AND GROUP_MEMBERS
Thanks
It depends on what you are utilizing. For example, if you are using in memory or ldap authentication you might not need any of the tables. The JdbcDaoImpl by default uses the schema defined in the reference. However, you can customize the queries on it to use a totally different schema. An example of the default queries and how to customize them can be found on this thread. If this still doesn't meet your needs you can write your own AuthenticationProvider.
If you are not using groups, then you should not need any of the tables specified in A.1.1 Group Authorities
We want to use groups tables. So which all other tables we have to have.
Thanks
All of the tables specified in A.1 User Schema and A.1.1 Group Authorities
We dont want authorities tables. We just have user names and groups such as supervisor, admin, employee etc.
What all tables we need for that.
Thanks
Specify these as roles and ignore the groups tables.
So only use Users and Authorities table in appendix A.1??