I would like to have an autocompliting input (text) field on my Spring 3 form. The suggested values should come from ldap. I should use JQuery for this, but so far that's all I know. I have found some examples with data txt.files, but not ldap.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Create a Servlet or Controller (for example
/getLdapData
) which will fetch data from data base and return it as string when'\n'
will be separator between values:Then create autocomplete for your control:
Updated:
I don't know exactly how to get the list of users from LDAP, but I think this article can give you right direction.