Matt Snider
Matt Snider
@burtbeckwith Do you have any guidance here? Haven't found a way to get `@Transactional` to work with or without `micronaut-data`. Is there a minimal project that shows this working?
Okay I've been struggling with this one for awhile and it turns out the `TransactionalInterceptor` has been getting applied the whole time. The issue is that any methods not annotated...
I was able to get transactions working without Spring by adding the dependencies `annotationProcessor("io.micronaut.data:micronaut-data-processor:3.2.2")` and `implementation("io.micronaut.data:micronaut-data-tx")`. It turns out that the `NoTransactionException` was caused by a bug which I reported...
I just ran into this again because I was trying to get JOOQ set up properly such that I have the `JooqExceptionTranslator` and Transaction Manager from Spring but it doesn't...