jdbcIdempotentStore

@Bean
@ConditionalOnBean(value = [JdbcTemplate::class])
@ConditionalOnMissingBean(value = [IdempotentStore::class])
@ConditionalOnProperty(prefix = "idempotent", name = ["store-type"], havingValue = "JDBC")
fun jdbcIdempotentStore(properties: IdempotentProperties, jdbcTemplate: JdbcTemplate): IdempotentStore