Posts by Shift San • 19 points
5 posts
-
0
votes1
answer18
viewsA: It is possible to perform queries in a table that is not mapped by Hibernate
Yes it is possible, just perform a native query and from an entity that is mapped by Hibernant do this mapping.
-
-1
votes1
answer18
viewsQ: It is possible to perform queries in a table that is not mapped by Hibernate
I would like to list data from a table that is not mapped by Hibernate; that is, I have an Endity map table and I want to report a search in a table in my database that is not an Entity. That’s…
-
0
votes0
answers22
viewsQ: Auditoria Hibernate
I am trying to accomplish the construction of a history of a given table. @Entity @Table(name = "RUBRICA_INSTITUTO) @Getter @Setter @Audited @Audittable( "RUBRICA_INSTITUTO_AUDITORIA" )…
-
0
votes2
answers520
viewsA: Select List Item by "ID" using Thymeleaf and direct to another detail page
To access the elements within an OPTIONAL is different from a LIST. So that you have access to the OPTIONAL elements try in the next line to add the . get(). modelAndView.addObject("service",…
-
0
votes1
answer110
viewsQ: Why is one method that uses polymorphism being called in place of another in case of inheritance?
Could someone explain why the output of the program is: Primate walking Mammal listening Man seeing. Shouldn’t be?: Primate walking Mammal listening Mammal selling Year: 2019 Banking: IDECAN Organ:…