如何使用 Spring Security Core 插件忘记 Grails 应用程序的密码?

发布于 2024-12-03 07:36:01 字数 156 浏览 3 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

随梦而飞# 2024-12-10 07:36:01

由于密码是用单向加密存储的,因此无法检索原始的明文密码(除非您未加密地存储它,这是一个坏主意)。因此,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.

是伱的 2024-12-10 07:36:01

我使用电子邮件确认插件实现了重置密码功能。当时我正在使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文