Spring Security - 添加TAN系统
我使用 Spring Security 3.04 使用 3 个角色对系统用户进行身份验证,同时允许所有用户访问登录页面等内容。
从这个登陆页面,应该有另一个系统只能由一个角色和经过 TAN 身份验证的用户访问。
所以我的问题是:向 Spring Security 添加第三个登录属性的最佳方法是什么?或者有没有办法在安全上下文中存储属性? 或者有没有其他方法可以使用 Spring Security 向我的应用程序添加多级身份验证?
预先感谢您的任何帮助!
此致, 罗伯特
I'm using Spring Security 3.04 to authenticate the users of my system using 3 Roles, while all of them are allowed to access something like a landing page.
From this landing page, there should be another system which can only be accessed by one Role and by a TAN-authenticated user.
So my question is: What would be the best way to add a third login-attribute to spring security? Or is there a way to store attributes within the security context?
Or is there any other way to add a multi-level-authentication to my application using spring security?
Thanks in advance for any help!
Best regards,
Robert
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有一个关于如何集成外部身份验证机制的精彩演练:
http://blog.springsource.com/2010/08/02/spring-security-in-google-app-engine/
这应该会让您走上正轨。
授予
There is an excellent walkthrough on how to integrate an external authentication mechanism here:
http://blog.springsource.com/2010/08/02/spring-security-in-google-app-engine/
That should get you on the right track.
Grant