我一直在尝试使用 将Jackson2JsonRedisSerializer
自定义实例序列化为 Redis 存储中的哈希值。似乎即使我已经正确创建了模板,也没有创建散列。
只是我与 Kotlin 一起使用的spring-data-reactive-redis
注释spring-webflux
。
data class Movie(
@get:JsonProperty("Id")
val id: String?,
@get:JsonProperty("Title")
val title: String,
)
@Configuration
class RedisConfig {
@Bean
fun hashTemplate(factory: ReactiveRedisConnectionFactory): ReactiveRedisTemplate<String, Movie> {
val serializationContext = RedisSerializationContext.newSerializationContext<String, Movie>(StringRedisSerializer())
.hashKey(StringRedisSerializer())
.hashValue(Jackson2JsonRedisSerializer(Movie::class.java))
.build()
return ReactiveRedisTemplate(factory, context)
}
}
这是使用此模板添加数据的示例。
@Component
class DataLoader(@Qualifier("hashTemplate") private val template: ReactiveRedisTemplate<String, Movie>) {
@PostConstruct
fun loadData() {
Flux.fromIterable(
listOf(Movie("1", "Avengers: Endgame"), Movie("2", "Black Widow"))
)
.flatMap { movie ->
template.opsForHash<String, Movie>().put("Movies", movie.id, movie)
}
.thenMany(template.opsForHash<String, Movie>().entries("Movies"))
.subscribe { m -> println(m) }
}
}
谁能帮我解释为什么 Spring 不使用我创建的模板。