Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
b7efec54
Commit
b7efec54
authored
Apr 14, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support case insensitive value for Cassandra's SchemaAction
Closes gh-8903
parent
4fd9a8c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
CassandraDataAutoConfiguration.java
...figure/data/cassandra/CassandraDataAutoConfiguration.java
+4
-3
CassandraDataAutoConfigurationIntegrationTests.java
...andra/CassandraDataAutoConfigurationIntegrationTests.java
+3
-3
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/cassandra/CassandraDataAutoConfiguration.java
View file @
b7efec54
/*
/*
* Copyright 2012-201
6
the original author or authors.
* Copyright 2012-201
7
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -106,8 +106,9 @@ public class CassandraDataAutoConfiguration {
...
@@ -106,8 +106,9 @@ public class CassandraDataAutoConfiguration {
session
.
setCluster
(
this
.
cluster
);
session
.
setCluster
(
this
.
cluster
);
session
.
setConverter
(
converter
);
session
.
setConverter
(
converter
);
session
.
setKeyspaceName
(
this
.
properties
.
getKeyspaceName
());
session
.
setKeyspaceName
(
this
.
properties
.
getKeyspaceName
());
SchemaAction
schemaAction
=
this
.
propertyResolver
.
getProperty
(
"schemaAction"
,
String
name
=
this
.
propertyResolver
.
getProperty
(
"schemaAction"
,
SchemaAction
.
class
,
SchemaAction
.
NONE
);
SchemaAction
.
NONE
.
name
());
SchemaAction
schemaAction
=
SchemaAction
.
valueOf
(
name
.
toUpperCase
());
session
.
setSchemaAction
(
schemaAction
);
session
.
setSchemaAction
(
schemaAction
);
return
session
;
return
session
;
}
}
...
...
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/cassandra/CassandraDataAutoConfigurationIntegrationTests.java
View file @
b7efec54
/*
/*
* Copyright 2012-201
6
the original author or authors.
* Copyright 2012-201
7
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -72,8 +72,8 @@ public class CassandraDataAutoConfigurationIntegrationTests {
...
@@ -72,8 +72,8 @@ public class CassandraDataAutoConfigurationIntegrationTests {
String
cityPackage
=
City
.
class
.
getPackage
().
getName
();
String
cityPackage
=
City
.
class
.
getPackage
().
getName
();
AutoConfigurationPackages
.
register
(
this
.
context
,
cityPackage
);
AutoConfigurationPackages
.
register
(
this
.
context
,
cityPackage
);
EnvironmentTestUtils
.
addEnvironment
(
this
.
context
,
EnvironmentTestUtils
.
addEnvironment
(
this
.
context
,
"spring.data.cassandra.schemaAction
:RECREATE_DROP_UNUSED
"
,
"spring.data.cassandra.schemaAction
=recreate_drop_unused
"
,
"spring.data.cassandra.keyspaceName
:
boot_test"
);
"spring.data.cassandra.keyspaceName
=
boot_test"
);
this
.
context
.
register
(
CassandraAutoConfiguration
.
class
,
this
.
context
.
register
(
CassandraAutoConfiguration
.
class
,
CassandraDataAutoConfiguration
.
class
);
CassandraDataAutoConfiguration
.
class
);
this
.
context
.
refresh
();
this
.
context
.
refresh
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment