为 Web 应用程序创建用户身份验证
我正在创建我的第一个 Web 应用程序,并希望设置一个用户身份验证方案,通过该方案可以对用户进行身份验证,并且数据库可以识别他们的数据。
例如,对于注册/登录,他们的电子邮件/密码。
如何创建一个可靠的密码?大多数 Web 应用程序都是做什么的?
我正在使用 Java 和 MySQL
谢谢
I am creating my first web application and want to setup a user authentication scheme though which users can be authenticated and their data can be recognized by the database.
For example, for registration/login , their email/ password.
How do I create a robust password, what is that most web applications do?
I am using Java and MySQL
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这里:http://www.javaworld。 com/javaworld/jw-04-2000/jw-0428-websecurity.html,它很好地涵盖了它。也就是说,您是否使用任何类型的 Web 框架?如果您正在做任何打算成为生产站点的事情,您可能会发现 Spring &其他框架可以为您解决很多众所周知的问题。
** 更新:由于您正在使用 Play!框架,只需使用它们的内置身份验证,除非您有不匹配的特殊要求。 http://www.playframework.org/documentation/1.2.1/guide8
Have a look here: http://www.javaworld.com/javaworld/jw-04-2000/jw-0428-websecurity.html, it covers it pretty well. That said, are you using a web framework of any kind? If you're doing anything intended to be a production site you might find Spring & other frameworks solve a lot of well-known problems for you.
** Update: Since you're using the Play! framework, just use their built-in auth unless you have special requirements that it doesn't match. http://www.playframework.org/documentation/1.2.1/guide8