Re: Using rpc.XserializeFinalFields

2025-07-11 Thread 'Gerard Keiser' via GWT Users
Thanks for the responses. The biggest thing, I suppose, is JPMS, especially since Java 17, which I have not yet had a need to learn much about. Am I setting myself up for reflection exceptions in unpredictable places, as suggested at https://docs.oracle.com/en/java/javase/17/migrate/migrating-

Re: Using rpc.XserializeFinalFields

2025-07-11 Thread 'Tim Macpherson' via GWT Users
My DTOs had some circular references which were permissable for rpc but not for Jackson.So far no other problems. Yahoo Mail: Search, Organize, Conquer On Thu, Jul 10, 2025 at 7:22 PM, Colin Alworth wrote: If your DTO classes care about specific collection implementations, or want maps w

Re: Using rpc.XserializeFinalFields

2025-07-10 Thread Colin Alworth
If your DTO classes care about specific collection implementations, or want maps with complex keys, or want to serialize non-tree graphs (so the same object can appear more than once when it gets to the client), JSON might add extra hurdles. The final field serialization feature was added a lon

Re: Using rpc.XserializeFinalFields

2025-07-10 Thread 'Tim Macpherson' via GWT Users
I recently migrated from rpc to Domino Jackson.  If your DTO classes are well formed it's not difficult - so far,  not completely tested  Yahoo Mail: Search, Organize, Conquer On Thu, Jul 10, 2025 at 2:54 PM, 'Gerard Keiser' via GWT Users wrote: I noticed there were many warnings about a