We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb4d9d commit 1b84562Copy full SHA for 1b84562
spring-kafka/src/main/java/org/springframework/kafka/listener/ContainerProperties.java
@@ -543,6 +543,7 @@ public Long getIdlePartitionEventInterval() {
543
return this.idlePartitionEventInterval;
544
}
545
546
+ @Nullable
547
public PlatformTransactionManager getTransactionManager() {
548
return this.transactionManager;
549
@@ -555,7 +556,7 @@ public PlatformTransactionManager getTransactionManager() {
555
556
* @since 1.3
557
* @see #setAckMode(AckMode)
558
*/
- public void setTransactionManager(PlatformTransactionManager transactionManager) {
559
+ public void setTransactionManager(@Nullable PlatformTransactionManager transactionManager) {
560
this.transactionManager = transactionManager;
561
562
0 commit comments