Posts by Distak • 36 points
3 posts
-
0
votes1
answer65
viewsA: Problem to recover data using Hibernate
Hello, with the animal instance you only had access to the race object, in order to be able to access the attribute "Breed class name" just add the getName() as below: animal.getRaca(). getName();…
-
1
votes1
answer38
viewsA: Correct creation of tables
Hello, for this case you must adopt the table by Subclass,do the following: Add in the object class: @Inheritance(Strategy=Inheritancetype.JOINED) In the order class:…
-
1
votes2
answers1177
viewsA: Spring MVC + Spring Date Pagination
Good afternoon! In one of my projects I used this solution, all your documentation is on github: https://github.com/jpenren/thymeleaf-spring-data-dialect See if you can help.…