在 grails 之外使用 grails 安全模型 (acegi)

发布于 2024-12-06 10:13:51 字数 317 浏览 1 评论 0原文

我有一个现有的 grails 应用程序,它是使用旧的 acegi 安全插件开发的。我想开发使用相同安全模型的其他应用程序(非 grails)。我有两个问题:

  1. 我可以使用Spring Security项目来实现这个?

  2. 您能否提供一个示例来说明我如何进行身份验证?

    此外,我所说的“安全模型”实际上是指具有用户和角色的现有数据库。

I have an existing grails application that was developed using the older acegi security plugin. I would like to develop additional applications (non-grails) that uses the same security model. I have two questions:

  1. Can I use the Spring Security project to achieve this?

  2. Can you provide an example of how I would authenticate?

    Also, by 'security model' I really mean the existing database that has the users and roles.

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

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

发布评论

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

评论(1

木有鱼丸 2024-12-13 10:13:51

是的!旧的acegi插件是关于spring security 2.x的(新插件是spring security 3.x)。因此,请务必下载正确的 jar

或代码,并确保用于配置的 xml 配置与您的数据库架构相匹配,例如:

<authentication-provider>
    <jdbc-user-service data-source-ref="dataSource" 
        users-by-username-query="SELECT U.username, U.password, U.accountEnabled AS 'enabled' FROM User U where U.username=?"
        authorities-by-username-query="SELECT U.username, R.name as 'authority' FROM User U JOIN Authority A ON u.id = A.userId JOIN Role R ON R.id = A.roleId WHERE U.username=?"/>
</authentication-provider>

更多信息位于 http://java.dzone.com/tips/pathway-acegi-spring-security-

Yes! the old acegi plugin is about spring security 2.x (new plugin is spring security 3.x). So be sure to download the right jar

as or code, be sure that your xml config for configuring match your database schema, for instance:

<authentication-provider>
    <jdbc-user-service data-source-ref="dataSource" 
        users-by-username-query="SELECT U.username, U.password, U.accountEnabled AS 'enabled' FROM User U where U.username=?"
        authorities-by-username-query="SELECT U.username, R.name as 'authority' FROM User U JOIN Authority A ON u.id = A.userId JOIN Role R ON R.id = A.roleId WHERE U.username=?"/>
</authentication-provider>

more info at http://java.dzone.com/tips/pathway-acegi-spring-security-

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