Browse Source
Auto-configuration of LDAP's `LdapTemplate` is currently a part of `LdapDataAutoConfiguration` which is conditional of presence of `LdapRepository` (i.e. Spring Data LDAP). This arrangement isn't ideal since the `LdapTemplate` is a part of Spring LDAP project, and therefore should not be tied to Spring Data LDAP. This commit improves and simplifies LDAP auto-configuration by moving `LdapTemplate` configuration to `LdapAutoConfiguration`. Consequently, `LdapDataAutoConfiguration` is not needed anymore and is removed. See gh-13136pull/13143/head
9 changed files with 24 additions and 117 deletions
@ -1,50 +0,0 @@
@@ -1,50 +0,0 @@
|
||||
/* |
||||
* Copyright 2012-2017 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.data.ldap; |
||||
|
||||
import javax.naming.ldap.LdapContext; |
||||
|
||||
import org.springframework.boot.autoconfigure.AutoConfigureAfter; |
||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; |
||||
import org.springframework.boot.autoconfigure.ldap.LdapAutoConfiguration; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.data.ldap.repository.LdapRepository; |
||||
import org.springframework.ldap.core.ContextSource; |
||||
import org.springframework.ldap.core.LdapOperations; |
||||
import org.springframework.ldap.core.LdapTemplate; |
||||
|
||||
/** |
||||
* {@link EnableAutoConfiguration Auto-configuration} for Spring Data's LDAP support. |
||||
* |
||||
* @author Eddú Meléndez |
||||
* @since 1.5.0 |
||||
*/ |
||||
@Configuration |
||||
@ConditionalOnClass({ LdapContext.class, LdapRepository.class }) |
||||
@AutoConfigureAfter(LdapAutoConfiguration.class) |
||||
public class LdapDataAutoConfiguration { |
||||
|
||||
@Bean |
||||
@ConditionalOnMissingBean(LdapOperations.class) |
||||
public LdapTemplate ldapTemplate(ContextSource contextSource) { |
||||
return new LdapTemplate(contextSource); |
||||
} |
||||
|
||||
} |
||||
@ -1,57 +0,0 @@
@@ -1,57 +0,0 @@
|
||||
/* |
||||
* Copyright 2012-2017 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.data.ldap; |
||||
|
||||
import org.junit.After; |
||||
import org.junit.Test; |
||||
|
||||
import org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration; |
||||
import org.springframework.boot.autoconfigure.ldap.LdapAutoConfiguration; |
||||
import org.springframework.boot.test.util.TestPropertyValues; |
||||
import org.springframework.context.annotation.AnnotationConfigApplicationContext; |
||||
import org.springframework.ldap.core.LdapTemplate; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link LdapDataAutoConfiguration} |
||||
* |
||||
* @author Eddú Meléndez |
||||
*/ |
||||
public class LdapDataAutoConfigurationTests { |
||||
|
||||
private AnnotationConfigApplicationContext context; |
||||
|
||||
@After |
||||
public void close() { |
||||
if (this.context != null) { |
||||
this.context.close(); |
||||
} |
||||
} |
||||
|
||||
@Test |
||||
public void templateExists() { |
||||
this.context = new AnnotationConfigApplicationContext(); |
||||
TestPropertyValues.of("spring.ldap.urls:ldap://localhost:389") |
||||
.applyTo(this.context); |
||||
this.context.register(PropertyPlaceholderAutoConfiguration.class, |
||||
LdapAutoConfiguration.class, LdapDataAutoConfiguration.class); |
||||
this.context.refresh(); |
||||
assertThat(this.context.getBeanNamesForType(LdapTemplate.class)).hasSize(1); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue