Add How-to: Implement core services with Redis

Closes gh-1019
This commit is contained in:
Joe Grandja
2024-09-12 17:02:41 -04:00
parent c942ed7e43
commit fffe227d75
26 changed files with 2237 additions and 0 deletions

View File

@@ -12,6 +12,10 @@ java {
sourceCompatibility = JavaVersion.VERSION_17
}
compileJava {
options.compilerArgs << '-parameters'
}
antora {
options = [clean: true, fetch: !project.gradle.startParameter.offline, stacktrace: true]
environment = [
@@ -57,6 +61,10 @@ dependencies {
implementation "org.springframework.boot:spring-boot-starter-oauth2-client"
implementation "org.springframework.boot:spring-boot-starter-oauth2-resource-server"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation ("org.springframework.boot:spring-boot-starter-data-redis") {
exclude group: "io.lettuce", module: "lettuce-core"
}
implementation "redis.clients:jedis"
implementation "org.springframework:spring-webflux"
implementation project(":spring-security-oauth2-authorization-server")
runtimeOnly "com.h2database:h2"