Add Spring Boot auto-configuration for Apache Geode SSL.

This commit is contained in:
John Blum
2018-04-03 19:27:30 -07:00
parent 64eedc0b10
commit db5a649115
2 changed files with 58 additions and 1 deletions

View File

@@ -0,0 +1,56 @@
/*
* Copyright 2018 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.data.geode.autoconfigure;
import org.apache.geode.cache.client.ClientCache;
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
import org.springframework.boot.autoconfigure.condition.AnyNestedCondition;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Conditional;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.gemfire.client.ClientCacheFactoryBean;
import org.springframework.data.gemfire.config.annotation.EnableSsl;
/**
* The SslAutoConfiguration class...
*
* @author John Blum
* @since 1.0.0
*/
@Configuration
@ConditionalOnClass({ ClientCacheFactoryBean.class, ClientCache.class })
@Conditional(SslAutoConfiguration.EnableSslCondition.class)
@AutoConfigureBefore(ClientCacheAutoConfiguration.class)
@EnableSsl
@SuppressWarnings("unused")
public class SslAutoConfiguration {
@SuppressWarnings("unused")
static class EnableSslCondition extends AnyNestedCondition {
public EnableSslCondition() {
super(ConfigurationPhase.PARSE_CONFIGURATION);
}
@ConditionalOnProperty(prefix = "spring.data.gemfire.security.ssl", name = { "keystore", "truststore", })
static class SpringDataGeodeSslContextCondition {}
@ConditionalOnProperty({ "gemfire.ssl-keystore", "gemfire.ssl-truststore", "ssl-keystore", "ssl-truststore", })
static class StandaloneApacheGeodeSslContextCondition {}
}
}

View File

@@ -5,5 +5,6 @@ org.springframework.boot.data.geode.autoconfigure.CachingProviderAutoConfigurati
org.springframework.boot.data.geode.autoconfigure.ContinuousQueryAutoConfiguration,\
org.springframework.boot.data.geode.autoconfigure.FunctionExecutionAutoConfiguration,\
org.springframework.boot.data.geode.autoconfigure.RepositoriesAutoConfiguration,\
org.springframework.boot.data.geode.autoconfigure.SecurityAutoConfiguration
org.springframework.boot.data.geode.autoconfigure.SecurityAutoConfiguration,
org.springframework.boot.data.geode.autoconfigure.SslAutoConfiguration