I am starting with Apache Shiro. A database is used for persistence via Shiro's JdbcRealm.
My question is whether Shiro provides some support for user management, such as user creation, assigning them roles, etc. Something like UserDetailsManager/JdbcUserDetailsManager in Spring. Or do I need to modify the underlying DB directly without any Shiro API?
Thanks