Posts by Alexandre Ferreira • 11 points
2 posts
-
0
votes2
answers1154
viewsA: How can I order a Linkedlist?
You can implement directly this way. Collections.Sort(quotas, (a, b) -> a.getName(). compareTo(b. getName()));;
-
1
votes1
answer447
viewsQ: Hierarchical selects. Parent-child relationship in the same table
I have a Product Entity regarding @Manytoone. And I need to bring the last child record of each parent. I made a select in the table and this bringing what I need more I’m not right to do the same…