作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 spring boot 应用程序中使用 Kafka。我想在一个事务中执行操作,如下所示。
listen(){
produce()
saveInDb()
}
和
operation(){
saveInDB()
produce()
}
我已经使用以下配置启用了 Kafka 事务
spring:
kafka:
bootstrap-servers: localhost:19092,localhost:29092,localhost:39092
producer:
transaction-id-prefix: tx-
consumer:
enable-auto-commit: false
isolation-level: read_committed
并使用这个配置
@Bean
public ProducerFactory<String, Object> producerFactory() {
Map<String, Object> props = new HashMap<>();
props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServers);
props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class);
props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, JsonSerializer.class);
DefaultKafkaProducerFactory<String, Object> factory = new DefaultKafkaProducerFactory<>(props);
factory.setTransactionIdPrefix("tx-");
return factory;
}
@Bean
public KafkaTransactionManager kafkaTransactionManager() {
KafkaTransactionManager manager = new KafkaTransactionManager(producerFactory());
return manager;
}
@Bean
public KafkaTemplate<String, Object> kafkaTemplate() {
return new KafkaTemplate<>(producerFactory());
}
但是在尝试使用 spring @Transactional 注释时出现错误
@Transactional
operation(){
saveInDB()
produce()
}
No bean named 'transactionManager' available: No matching TransactionManager bean found for qualifier 'transactionManager' - neither qualifier match nor bean name match!
我在这里关注了 spring 文档 https://docs.spring.io/spring-kafka/reference/html/#using-kafkatransactionmanager
我在配置中缺少什么?
最佳答案
我没有在配置中定义 transactionManager bean。Spring 无法找到它,因为 KafkaTransactionManager
扩展了 AbstractPlatformTransactionManager
并且 JpaTransactionManager
也扩展了相同的类。
将这个 bean 定义为主 bean 解决了这个问题。
@Bean
@Primary
public JpaTransactionManager transactionManager(EntityManagerFactory entityManagerFactory) {
return new JpaTransactionManager(entityManagerFactory);
}
Kafka 事务与其链接,KafkaTemplate
将事务与事务管理器同步。
引用 https://docs.spring.io/spring-kafka/reference/html/#transactions
关于java - 如何在spring boot app中使用spring transaction配置kafka transaction manager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70507373/
我是一名优秀的程序员,十分优秀!