File: readme.txt

package info (click to toggle)
libspring-ldap-java 1.3.1.RELEASE-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,876 kB
  • sloc: java: 12,509; xml: 4,104; jsp: 36; makefile: 31; sh: 13
file content (18 lines) | stat: -rw-r--r-- 922 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Demo application to be used for demonstrating how to convert a legacy JNDI-based
dao implementation written in Java 1.4 to use Spring LDAP, focussing on the Java5
support in Spring LDAP. For reference purposes, a corresponding implementation
using ordinary Java LDAP/JNDI implementation is available in TraditionalPersonDaoImpl.

How to use:
-----------
'mvn test' will start up an LDAP server before running the integration tests that
verify the dao implementation.

'mvn eclipse:eclipse' will construct an Eclipse project for you to use. Import
that project into Eclipse using File/Import/Existing Project, and select this
directory.

You can start converting the org.springframework.ldap.demo.dao.PersonDaoImpl class.
The original traditional implementation, as well as a "solution", is available in
the org.springframework.ldap.demo.solution package. Run the tests after you have
converted a method.