我正在尝试使用 kotlin 协程与 Vertx 的集成重写我的 Vertx 应用程序。
我的应用程序我正在使用 Spring Data JPA,所以我的 Vertx 顶点调用 Spring 服务,其方法使用Vertx.executeBlocking()
标记@Transactional
我可以在 kotlin suspend
函数上放@Transactional
吗?
是的,如果包含挂起函数的类是 Spring bean,那么这是可能的。