Posts by MauricioGuedes • 81 points
5 posts
-
1
votes1
answer431
viewsA: JPA / Hibernate - Lazyloading Onetomany duplicating records
The solution I made for my problem was to convert the list to a Set<> and then add again to the List and return it. Yes and consider a gambiarra, as soon as possible I will perform the…
-
1
votes1
answer431
viewsQ: JPA / Hibernate - Lazyloading Onetomany duplicating records
Well, I have the following structure: public class FinCxaTransacaoGrupo { @Id @GeneratedValue(generator="gen-uuid") @GenericGenerator(name="gen-uuid", strategy = "uuid2") @Type(type="pg-uuid")…
-
1
votes1
answer194
viewsA: JPA merge/persist
I solved the problem with the following situation, when I merged() recovered the object and updated it again.
-
0
votes1
answer194
viewsQ: JPA merge/persist
I have the following structure: A.class B.class C.class D.class A.class contains many B.class containing a D.class C.class contains many D.class containing a B.class Whereas D.class is persisted in…
-
4
votes2
answers1267
viewsQ: Dynamically update application
I’m developing a project Java EE where we’ll have a database for each customer, currently use server Wildly. Let’s say we have a server with 30 clients, it would be a server with 30 different…
javaasked MauricioGuedes 81