DOC

org.springframework.ldap : spring-ldap

Maven & Gradle

Dec 01, 2010
25 usages

Spring LDAP · Spring LDAP is a Java library for simplifying LDAP operations, based on the pattern of Spring's JdbcTemplate. The framework relieves the user of common chores, such as looking up and closing contexts, looping through results, encoding/decoding values and filters, and more. The LdapTemplate class encapsulates all the plumbing work involved in traditional LDAP programming, such as creating a DirContext, looping through NamingEnumerations, handling exceptions and cleaning up resources. This leaves the programmer to handle the important stuff - where to find data (DNs and Filters) and what do do with it (map to and from domain objects, bind, modify, unbind, etc.), in the same way that JdbcTemplate relieves the programmer of all but the actual SQL and how the data maps to the domain model. In addition to this, Spring LDAP provides transaction support, a pooling library, exception translation from NamingExceptions to a mirrored unchecked Exception hierarchy, as well as several utilities for working with filters, LDAP paths and Attributes.

Table Of Contents

Latest Version

Download org.springframework.ldap : spring-ldap Javadoc & API Documentation - Latest Versions:

All Versions

Download org.springframework.ldap : spring-ldap Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.3.x
1.2.x
1.2

How to open Javadoc JAR file in web browser

  1. Rename the file spring-ldap-1.3.1.RELEASE-javadoc.jar to spring-ldap-1.3.1.RELEASE-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder spring-ldap-1.3.1.RELEASE-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "spring-ldap-1.3.1.RELEASE-sources.jar" -d "spring-ldap-1.3.1.RELEASE-javadoc" -subpackages 

Advertisement