|
|
|
|
@ -19,7 +19,6 @@ package org.springframework.boot.jdbc;
@@ -19,7 +19,6 @@ package org.springframework.boot.jdbc;
|
|
|
|
|
import java.util.Arrays; |
|
|
|
|
import java.util.Collection; |
|
|
|
|
import java.util.Collections; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Locale; |
|
|
|
|
|
|
|
|
|
import org.springframework.util.Assert; |
|
|
|
|
@ -225,11 +224,11 @@ public enum DatabaseDriver {
@@ -225,11 +224,11 @@ public enum DatabaseDriver {
|
|
|
|
|
* AWS Advanced JDBC Wrapper. |
|
|
|
|
* @since 3.5.0 |
|
|
|
|
*/ |
|
|
|
|
AWS_JDBC_WRAPPER(null, "software.amazon.jdbc.Driver") { |
|
|
|
|
AWS_WRAPPER(null, "software.amazon.jdbc.Driver") { |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
protected Collection<String> getUrlPrefixes() { |
|
|
|
|
return List.of("aws-wrapper"); |
|
|
|
|
return Collections.singleton("aws-wrapper"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
|