Gavin King

Results 1281 comments of Gavin King

Note that Hibernate 6 has built-in support for some sort of native JSON mappings. We should test that stuff and see how it works in HR.

You can just call `withSession()`. Please refer to the Javadoc: ```java /** * Perform work using a {@link Session reactive session}. * * * If there is already a session...

> I'm very puzzled about how it is supported to work in the reactive world where the thread context can switch and later be processed on a different thread, which...

> so probably micronaut context propagation needs to be somehow integrated with vertx context propagation Yeah, that's what we did in Quarkus, but I recall it being a bit subtle...

You mean like a [CDI `TypeLiteral`](https://jakarta.ee/specifications/cdi/2.0/apidocs/?javax/enterprise/util/TypeLiteral.html), right? But what is the usecase here? For use with `in` conditions? Or something else?

I see. So I suppose this: List list; _is_ possible in standard JPA with an `AttributeConverter`.

Right, I know that, but that's not standard in the Persistence spec.

@lukasj we should probably get on zoom sometime just to talk this one through. Perhaps there's something sensible we could say to clarify this issue. I'm not very clear on...

> You mean an existing view. Yeah I was about to say I figure he means something like: ```java @Entity @View(name="Things", query="...") public class Thing { ... } ``` So...