quarkusio / quarkus

Quarkus: Supersonic Subatomic Java.
https://quarkus.io
Apache License 2.0
13.84k stars 2.7k forks source link

WebSockets Next: follow the rule of Quarkus REST for Transactional annotation #44495

Closed mkouba closed 1 week ago

mkouba commented 1 week ago

Description

It seems that Quarkus REST has a specific rule for @Transactional: "If a method or class is annotated with jakarta.transaction.Transactional then it will also be treated as a blocking method. This is because JTA is a blocking technology, and is generally used with other blocking technology such as Hibernate and JDBC.".

Implementation ideas

No response