Hi, I'm new to R2DBC.
A question came up while I was using R2DBC Repository.
It seems that the transaction is not being started when calling SimpleR2dbcRepository(Using Interface extends R2dbcRepository) methods directly without an external transaction.
Unlike JDBC and JPA, it seems that R2dbcRepositoryFactoryBean does not use TransactionalRepositoryFactoryBeanSupport, which prevents it from creating a proxy to handle the @Transactional annotation.
I am curious if there is a reason for this behavior.
Thank you.