Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Jan 6, 2017
1 parent fcbed8f commit 4523927
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,11 @@

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.core.env.Environment;
import org.springframework.ldap.core.LdapTemplate;
import org.springframework.util.Assert;
import org.springframework.util.ObjectUtils;

/**
* Configuration properties to configure {@link LdapTemplate}.
* Configuration properties for LDAP.
*
* @author Eddú Meléndez
* @since 1.5.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@
"description": "Enable JPA repositories.",
"defaultValue": true
},
{
"name": "spring.data.ldap.repositories.enabled",
"type": "java.lang.Boolean",
"description": "Enable LDAP repositories.",
"defaultValue": true
},
{
"name": "spring.data.mongodb.repositories.enabled",
"type": "java.lang.Boolean",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ public class LdapDataAutoConfigurationTests {

@After
public void close() {
this.context.close();
if (this.context != null) {
this.context.close();
}
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package org.springframework.boot.autoconfigure.ldap;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration;
Expand All @@ -37,11 +36,6 @@ public class LdapAutoConfigurationTests {

private AnnotationConfigApplicationContext context;

@Before
public void setup() {
this.context = new AnnotationConfigApplicationContext();
}

@After
public void close() {
if (this.context != null) {
Expand Down Expand Up @@ -87,6 +81,7 @@ public void testContextSourceWithMoreProperties() {
}

private void load(String... properties) {
this.context = new AnnotationConfigApplicationContext();
EnvironmentTestUtils.addEnvironment(this.context, properties);
this.context.register(LdapAutoConfiguration.class,
PropertyPlaceholderAutoConfiguration.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,9 @@ content into your application; rather pick only the properties that you need.
spring.data.elasticsearch.properties.*= # Additional properties used to configure the client.
spring.data.elasticsearch.repositories.enabled=true # Enable Elasticsearch repositories.
# DATA LDAP
spring.data.ldap.repositories.enabled=true # Enable LDAP repositories.
# MONGODB ({sc-spring-boot-autoconfigure}/mongo/MongoProperties.{sc-ext}[MongoProperties])
spring.data.mongodb.authentication-database= # Authentication database name.
spring.data.mongodb.database=test # Database name.
Expand Down

0 comments on commit 4523927

Please sign in to comment.