Mark Swatosh
Mark Swatosh
This was only a preview in Java 21, so this can be considered for EE12 https://openjdk.org/jeps/453
> For example, if some component receives a factory and uses it to create a new thread, a developer would most likely want to continue with the same context it...
Adding some context here (without endorsing the idea) from [a PDF on JSR 236](https://jcp.org/aboutJava/communityprocess/ec-public/materials/2013-01-1516/JSR236-EC-F2F-Jan2013.pdf): - Same rules as a ManagedExecutorService - Allows distributing the task to a peer on another...
This should be added for Jakarta EE 11
This should be added for Jakarta EE 11
This should be added for Jakarta EE 11
I agree the older versions should retain their original naming. I'm guessing this just got caught up in the renaming process. @starksm64 It looks like this is the only change...
There is some discussion on how to convert to a UUID in postgres here: https://stackoverflow.com/questions/12771737/conversion-string-to-uuid-in-postgres-and-java/34652560#34652560 There is a recreate here: https://github.com/mswatosh/persistence-recreates/blob/1a2658d4e90ce56807bf7ecbc65455d1b8600f17/src/main/java/com/example/application/PersistenceService.java#L119
@rfelcman It looks like it only occurs if the id is Generated, in your test case you're specifying it. I modified your test case to generate the Id and it...
I think I've narrowed down the issue. When I use this in my persistence.xml: ``` ``` It's creating the table as: ``` postgres=# \d TEST_TAB_UUID_UUID Table "public.test_tab_uuid_uuid" Column | Type...