stations readable from MDM (raw). get by id ok

This commit is contained in:
Ivan I. Ovchinnikov
2026-07-07 22:17:44 +03:00
parent fe54c095ab
commit b37009a169
8 changed files with 142 additions and 11 deletions
@@ -50,6 +50,11 @@ dependencies {
implementation("org.locationtech.jts:jts-core:1.19.0")
// inmemory cache с поддержкой TTL, позволяет задать TTL и автоматически удалять устаревшие записи.
implementation("com.github.ben-manes.caffeine:caffeine:3.1.8")
// обёртка для «circuit breaker», «retry» и т.п. защищает от падения при ошибках сети (circuitbreaker + fallback).
implementation("org.springframework.cloud:spring-cloud-starter-circuitbreaker-resilience4j")
testImplementation("junit:junit")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
@@ -65,7 +70,7 @@ dependencyManagement {
imports {
mavenBom("org.springframework.cloud:spring-cloud-dependencies:${property("versions.spring.cloud")}")
mavenBom("org.testcontainers:testcontainers-bom:${property("versions.testcontainers")}")
}
}
}
tasks.withType<Jar> {