I want to use Apache Shiro and MySQL for my Realm. What tables and fields does Shiro need to work?
|
Shiro doesn't require database tables to function. Shiro users can use whatever datastore they want to model or manage users, groups, permissions etc. It is a Shiro Realm's responsibility to act as the bridge to your data (however you want to represent it) and return it in a format that Shiro understands. Because Shiro does not impose a data model upon you, this is what allows it to work with so many backends (LDAP, Active Directory, RDBMS, File System, etc). If you want to use an RDBMS as your backing data store, check out Shiro's JdbcRealm source code to give you an idea of what your tables might look like. This is just an example though. You could have any table structure you wish. |
||||
|
|
|
A skim of Shiro's quick startup page and Realm documentation page doesn't bring up anything about MySQL or databases at all. Based on that, it doesn't seem like any particular tables are required. |
|||
|
|
|
as i understand, it only requires 3 i have 3 tables and 2 views that I use as source of data for the framework. i have this on a Postgresql, but you can adapt it to use in other dbs. try this
if you find something wrong, please post back |
||||
|
|