是否可以在 jboss 中管理 ldap 上下文?
就像 JBoss 管理 jdbc 数据源一样,它是否可以使用 JNDI 管理 LDAP 上下文?
In the same way that JBoss can manage jdbc data sources can it manage LDAP contexts using JNDI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这只是 Tomcat 自定义的,请参阅 Tomcat 文档。
简而言之,只需定义并提供您自己的 LdapContextFactory 实现。 JBoss 将使用第一个参数调用 getObjectInstance() 方法,您可以将其转换为 Reference,遍历其所有 RefAddrs,并通过 RefAddr.getType() 获取选项名称,并通过 RefAddr.getContent() 获取选项值。然后,您可以使用传递到那里的任何内容来创建 LdapContext 并返回它。
Yes, this is just a Tomcat custom <Resource>, see the Tomcat documentation.
In brief, just define a and provide your own implementation of an LdapContextFactory. JBoss will call your getObjectInstance() method with a first parameter that you can cast to a Reference, traverse all its RefAddrs, and get your option names via RefAddr.getType(), and their values via RefAddr.getContent(). Then you use whatever you have passed there to create your LdapContext and return it.