spring-ldap icon indicating copy to clipboard operation
spring-ldap copied to clipboard

Spring LDAP

Results 124 spring-ldap issues
Sort by recently updated
recently updated
newest added
trafficstars

I am using OpenLDAP 2.6.7. POM file looks like this: ``` org.springframework.boot spring-boot-starter-parent 3.2.5 17 ... org.springframework.boot spring-boot-starter-data-ldap ... ... ``` My code: ``` final var sc = new SearchControls();...

It will be easier to use `LdapClient` if applications can wrap their existing `LdapTemplate` and continue using it: ``` @Bean LdapClient ldapClient(LdapTemplate template) { return new LdapTemplateClientAdapter(template); } ```

Since Spring Boot 3 has migrated to httpclient5 and it is documented that it cannot be combined with httpclient 4, spring-ldap-test should migrate its dependencies to make use of that...

# Upgrade Enterprise Gradle Plugin ## Bumps - [com.gradle.enterprise](https://plugins.gradle.org/plugin/com.gradle.enterprise) from 3.12.3 to 3.16.2 - [io.spring.ge.conventions](https://github.com/spring-io/gradle-enterprise-conventions) from 0.0.7 to 0.0.15 ## Compatibility Based on commits in spring-framework repo, internally spring team...

This is a spring-ldap companion of spring-data-ldap issue [DATALDAP-23](https://jira.spring.io/browse/DATALDAP-23) The @Entry annotation on the entity class requires 'base' and 'objectClasses' attributes. Unfortunately there's no easy way to avoid hardcoding values...

in: build
type: task

It seems that `DirContextOperations` returned by `LdapTemplate.lookupContext()` doesn't correctly support multi value attributes if the value count exceeds the LDAP fetch limit (1500 in our case). Following code doesn't work...

in: core