All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.starxmind.boot.ldap.LdapAutoConfig Maven / Gradle / Ivy

package com.starxmind.boot.ldap;


import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * Ldap自动配置
 *
 * @author pizzalord
 * @since 1.0
 */
@Slf4j
@Configuration
public class LdapAutoConfig {
    @Bean
    public LdapClient ldapClient() {
        return new LdapClient();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy