This commit provides implementation of SessionRepository based on Spring's JdbcOperations interface. @EnableJdbcHttpSession annotation is provided to ease the configuration, together with spring-session-jdbc BOM and schema creation scripts for all major databases. Fixes gh-364
20 lines
379 B
Groovy
20 lines
379 B
Groovy
apply from: JAVA_GRADLE
|
|
apply from: MAVEN_GRADLE
|
|
|
|
apply plugin: 'spring-io'
|
|
|
|
description = "Aggregator for Spring Session and Spring JDBC"
|
|
|
|
dependencies {
|
|
compile project(':spring-session'),
|
|
"org.springframework:spring-jdbc:$springVersion"
|
|
}
|
|
|
|
dependencyManagement {
|
|
springIoTestRuntime {
|
|
imports {
|
|
mavenBom "io.spring.platform:platform-bom:${springIoVersion}"
|
|
}
|
|
}
|
|
}
|