Java EE 6 安全性 - 使用用户实体类

发布于 2024-09-29 15:57:44 字数 94 浏览 2 评论 0原文

我所需要的只是一个简单的登录页面,它将检查简单用户实体类的用户名和密码。 Java EE 6 可以实现这一点吗?在教程中,他们总是将用户存储在 glassfish 服务器上。

All I need is a simple login page that will check against the username and password of a simple User entity class.
Is that possible with Java EE 6? In the tutorials they always store the users on the glassfish server.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

简美 2024-10-06 15:57:44

您可以在 Java EE 6 中使用 JASPIC API 执行此操作。不过,目前这是一个较低级别的 API因此,实际上基于应用程序提供的实体实现简单的登录仍然不是那么简单。

我创建了一个 JIRA 问题来解决这个特定的需求并提供了一个原型实现。有关详细信息,请参阅 JAVAEE_SPEC-9

You can do this in Java EE 6 with the JASPIC API. However, this is currently a somewhat lower-level API and actually implementing a simple login on basis of an application provided entity is thus still not that simple.

I've created a JIRA issue that addresses this specific requirement and provided a prototype implementation. See JAVAEE_SPEC-9 for more information.

洋洋洒洒 2024-10-06 15:57:44

是的。您需要的是基于表单的身份验证,Java EE 对此提供了一些支持。更多详细信息请参见以下链接登录身份验证

Yes. What you need is form based authentication and Java EE provides some support for it. More details at the below link login authentication

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