14
README.md
14
README.md
@@ -243,6 +243,20 @@ Disable Property: `org.springframework.cloud.bindings.boot.redis.enable`
|
||||
| `spring.redis.ssl` | `{ssl}`
|
||||
| `spring.redis.url` | `{url}`
|
||||
|
||||
### SAP Hana
|
||||
Type: `hana`
|
||||
Disable Property: `org.springframework.cloud.bindings.boot.hana.enable`
|
||||
|
||||
| Property | Value
|
||||
| -------- | ------------------
|
||||
| `spring.datasource.driver-class-name` | `com.sap.db.jdbc.Driver`
|
||||
| `spring.datasource.password` | `{password}`
|
||||
| `spring.datasource.url` | `{jdbc-url}` or if not set then `jdbc:sap://{host}:{port}/{database}`
|
||||
| `spring.datasource.username` | `{username}`
|
||||
| `spring.r2dbc.url` | `{r2dbc-url}` or if not set then `r2dbc:sap://{host}:{port}/{database}`
|
||||
| `spring.r2dbc.password` | `{password}`
|
||||
| `spring.r2dbc.username` | `{username}`
|
||||
|
||||
## SCS Config Server
|
||||
Type: `config`
|
||||
Disable Property: `org.springframework.cloud.bindings.boot.config.enable`
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
/*
|
||||
* Copyright 2020 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.cloud.bindings.boot;
|
||||
|
||||
import org.springframework.cloud.bindings.Binding;
|
||||
import org.springframework.cloud.bindings.Bindings;
|
||||
import org.springframework.core.env.Environment;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import static org.springframework.cloud.bindings.boot.Guards.isTypeEnabled;
|
||||
|
||||
/**
|
||||
* An implementation of {@link BindingsPropertiesProcessor} that detects {@link Binding}s of type: {@value TYPE}.
|
||||
*/
|
||||
public final class SapHanaBindingsPropertiesProcessor implements BindingsPropertiesProcessor {
|
||||
|
||||
/**
|
||||
* The {@link Binding} type that this processor is interested in: {@value}.
|
||||
**/
|
||||
public static final String TYPE = "hana";
|
||||
|
||||
@Override
|
||||
public void process(Environment environment, Bindings bindings, Map<String, Object> properties) {
|
||||
if (!isTypeEnabled(environment, TYPE)) {
|
||||
return;
|
||||
}
|
||||
|
||||
bindings.filterBindings(TYPE).forEach(binding -> {
|
||||
MapMapper map = new MapMapper(binding.getSecret(), properties);
|
||||
|
||||
//jdbc properties
|
||||
map.from("password").to("spring.datasource.password");
|
||||
map.from("host", "port", "database").to("spring.datasource.url",
|
||||
(host, port, database) -> String.format("jdbc:sap://%s:%s/%s", host, port, database));
|
||||
map.from("username").to("spring.datasource.username");
|
||||
|
||||
// jdbcURL takes precedence
|
||||
map.from("jdbc-url").to("spring.datasource.url");
|
||||
|
||||
properties.put("spring.datasource.driver-class-name", "com.sap.db.jdbc.Driver");
|
||||
|
||||
//r2dbc properties
|
||||
map.from("password").to("spring.r2dbc.password");
|
||||
map.from("host", "port", "database").to("spring.r2dbc.url",
|
||||
(host, port, database) -> String.format("r2dbc:sap://%s:%s/%s", host, port, database));
|
||||
map.from("username").to("spring.r2dbc.username");
|
||||
|
||||
// r2dbcURL takes precedence
|
||||
map.from("r2dbc-url").to("spring.r2dbc.url");
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
@@ -24,6 +24,7 @@ org.springframework.cloud.bindings.boot.BindingsPropertiesProcessor=\
|
||||
org.springframework.cloud.bindings.boot.PostgreSqlBindingsPropertiesProcessor, \
|
||||
org.springframework.cloud.bindings.boot.RabbitMqBindingsPropertiesProcessor, \
|
||||
org.springframework.cloud.bindings.boot.RedisBindingsPropertiesProcessor, \
|
||||
org.springframework.cloud.bindings.boot.SapHanaBindingsPropertiesProcessor, \
|
||||
org.springframework.cloud.bindings.boot.SpringSecurityOAuth2BindingsPropertiesProcessor, \
|
||||
org.springframework.cloud.bindings.boot.SqlServerBindingsPropertiesProcessor, \
|
||||
org.springframework.cloud.bindings.boot.VaultBindingsPropertiesProcessor, \
|
||||
|
||||
@@ -104,7 +104,7 @@ final class BindingSpecificEnvironmentPostProcessorTest {
|
||||
@Test
|
||||
@DisplayName("included implementations are registered")
|
||||
void includedImplementations() {
|
||||
assertThat(new BindingSpecificEnvironmentPostProcessor().processors).hasSize(20);
|
||||
assertThat(new BindingSpecificEnvironmentPostProcessor().processors).hasSize(21);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,114 @@
|
||||
/*
|
||||
* Copyright 2020 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.cloud.bindings.boot;
|
||||
|
||||
import org.junit.jupiter.api.DisplayName;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.cloud.bindings.Binding;
|
||||
import org.springframework.cloud.bindings.Bindings;
|
||||
import org.springframework.cloud.bindings.FluentMap;
|
||||
import org.springframework.mock.env.MockEnvironment;
|
||||
|
||||
import java.nio.file.Paths;
|
||||
import java.util.HashMap;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.springframework.cloud.bindings.boot.SapHanaBindingsPropertiesProcessor.TYPE;
|
||||
|
||||
@DisplayName("SAP Hana BindingsPropertiesProcessor")
|
||||
final class SapHanaBindingsPropertiesProcessorTest {
|
||||
|
||||
private final FluentMap secret = new FluentMap()
|
||||
.withEntry(Binding.TYPE, TYPE)
|
||||
.withEntry("database", "test-database")
|
||||
.withEntry("host", "test-host")
|
||||
.withEntry("password", "test-password")
|
||||
.withEntry("port", "test-port")
|
||||
.withEntry("username", "test-username");
|
||||
|
||||
private final MockEnvironment environment = new MockEnvironment();
|
||||
|
||||
private final HashMap<String, Object> properties = new HashMap<>();
|
||||
|
||||
@Test
|
||||
@DisplayName("composes jdbc url from host port and database")
|
||||
void testJdbc() {
|
||||
Bindings bindings = new Bindings(
|
||||
new Binding("test-name", Paths.get("test-path"), secret)
|
||||
);
|
||||
new SapHanaBindingsPropertiesProcessor().process(environment, bindings, properties);
|
||||
assertThat(properties)
|
||||
.containsEntry("spring.datasource.driver-class-name", "com.sap.db.jdbc.Driver")
|
||||
.containsEntry("spring.datasource.password", "test-password")
|
||||
.containsEntry("spring.datasource.url", "jdbc:sap://test-host:test-port/test-database")
|
||||
.containsEntry("spring.datasource.username", "test-username");
|
||||
}
|
||||
|
||||
@Test
|
||||
@DisplayName("gives precedence to jdbc-url")
|
||||
void testJdbcURL() {
|
||||
Bindings bindings = new Bindings(
|
||||
new Binding("test-name", Paths.get("test-path"), secret.withEntry("jdbc-url", "test-jdbc-url"))
|
||||
);
|
||||
new SapHanaBindingsPropertiesProcessor().process(environment, bindings, properties);
|
||||
assertThat(properties)
|
||||
.containsEntry("spring.datasource.driver-class-name", "com.sap.db.jdbc.Driver")
|
||||
.containsEntry("spring.datasource.password", "test-password")
|
||||
.containsEntry("spring.datasource.url", "test-jdbc-url")
|
||||
.containsEntry("spring.datasource.username", "test-username");
|
||||
}
|
||||
|
||||
@Test
|
||||
@DisplayName("composes r2dbc url from host port and database")
|
||||
void testR2dbc() {
|
||||
Bindings bindings = new Bindings(
|
||||
new Binding("test-name", Paths.get("test-path"), secret)
|
||||
);
|
||||
new SapHanaBindingsPropertiesProcessor().process(environment, bindings, properties);
|
||||
assertThat(properties)
|
||||
.containsEntry("spring.r2dbc.password", "test-password")
|
||||
.containsEntry("spring.r2dbc.url", "r2dbc:sap://test-host:test-port/test-database")
|
||||
.containsEntry("spring.r2dbc.username", "test-username");
|
||||
}
|
||||
|
||||
@Test
|
||||
@DisplayName("gives precedence to r2dbc-url")
|
||||
void testR2dbcURL() {
|
||||
Bindings bindings = new Bindings(
|
||||
new Binding("test-name", Paths.get("test-path"), secret.withEntry("r2dbc-url", "test-r2dbc-url"))
|
||||
);
|
||||
new SapHanaBindingsPropertiesProcessor().process(environment, bindings, properties);
|
||||
assertThat(properties)
|
||||
.containsEntry("spring.r2dbc.password", "test-password")
|
||||
.containsEntry("spring.r2dbc.url", "test-r2dbc-url")
|
||||
.containsEntry("spring.r2dbc.username", "test-username");
|
||||
}
|
||||
|
||||
@Test
|
||||
@DisplayName("can be disabled")
|
||||
void disabled() {
|
||||
Bindings bindings = new Bindings(
|
||||
new Binding("test-name", Paths.get("test-path"), secret)
|
||||
);
|
||||
environment.setProperty("org.springframework.cloud.bindings.boot.hana.enable", "false");
|
||||
|
||||
new SapHanaBindingsPropertiesProcessor().process(environment, bindings, properties);
|
||||
|
||||
assertThat(properties).isEmpty();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user