Last updated by ldaley 2 years ago
grails install-plugin ldap
Last updated by ldaley 2 years ago
The Grails LDAP Plugin uses the
Gldapo library to provide an easy to use, object oriented, interface to LDAP enabled directories.
Documentation
The
Gldapo site contains the current documentation for Gldapo. Please refer to that, but beware that initialization/config is a little different in the Grails context.
Configuration
To configure gldapo for use with your Grails app, you follow the same regular
config script initialization process, except that you put the config under the key
ldap in your Grails application config. The most common way to do this is to use the grails-app/conf/Config.groovy file ...
log4j {
…
}ldap {
directories {
directory1 {
url = "ldap://example.com"
base = "ou=example,dc=com"
userDn = "uid=someuser,ou=example,dc=com"
password = "password"
searchControls {
countLimit = 40
timeLimit = 600
searchScope = "subtree"
}
}
directory2 {
urls = [
"ldap://s1.example2.com",
"ldap://s2.example2.com",
]
base = "ou=example2,dc=com"
}
} typemappings = [
my.app.MyTypeMappings
]
}Schema Classes
The grails-ldap plugin adds the
grails-app/ldap directory to your project. You should put your schema classes in this directory to have them found by the plugin and automatically registered into your config.
The ‘gldapo’ bean
The grails-ldap plugin also adds a bean called
gldapo to your application context. This bean is the instance of
gldapo.Gldapo created from the config.
Last updated by ldaley 2 years ago
What version of Gldapo does this plugin use?
The version of Gldapo always matches the version number of this plugin.
Last updated by admin 2 years ago