Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 JDBCRealm 进行登录身份验证,但是我没有一个 user_role 表,而是有一个 groups 表,它有一个指向每个包含用户的组表的指针,并且它在该组中的角色,我应该如何为这种情况实现 JDBCRealm?
谢谢你
您不能JDBCRealm用于此目的:您必须编写自己的 JDBCRealm 子类并更改用于授权的查询。
JDBCRealm
另一个提示:根本不要使用 JDBCRealm:它根本无法扩展,因为Connection所有数据库通信都使用一个 JDBC 对象。你最好使用DataSourceRealm.
Connection
DataSourceRealm