如何使用 Spring Security Core 插件忘记 Grails 应用程序的密码?
在我的 grails 应用程序中,我使用 spring security 核心插件来确保安全性,使用电子邮件确认插件来确保电子邮件有效性,现在我需要实现忘记密码的代码。
我需要使用 spring security ui 插件还是可以使用现有插件来实现它?
带着感谢,
In my grails application,i am using spring security core plugin for security,and email confirmation plugin for email validity,now i need to implement code for forget password.
Do i need to use spring security ui plugin or i can achiebe it with existing plugins?
With thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于密码是用单向加密存储的,因此无法检索原始的明文密码(除非您未加密地存储它,这是一个坏主意)。因此,UI 插件中的工作流程涉及通过电子邮件重置密码。
您可以安装它,但不必使用 UI 插件 - 请随意复制实现并在您的应用程序中使用它。
Since passwords are stored with one-way encryption, there's no way to retrieve the original cleartext password (unless you store it unencrypted, which is a bad idea). So the workflow in the UI plugin involves resetting the password via email.
You can install that, but you don't have to use the UI plugin - feel free to copy the implementation and use it in your application.
我使用电子邮件确认插件实现了重置密码功能。当时我正在使用 Acegi 安全插件(Spring Security 插件的祖先),但据我所知它也应该与 Spring Security 插件一起使用。
I implemented a reset password feature using the email confirmation plugin. This was when I was using the Acegi security plugin (the Spring Security plugin's ancestor), but AFAIK it should work with the Spring Security plugin too.