Posts by Erick Ferreira • 7 points
8 posts
-
0
votes2
answers92
viewsA: Query with Hibernate error could not get a field value by Reflection
I ended up being able to solve it in the following way: public List<Especialidade> carregarEspecialidade(Profissao profissao){ List<Especialidade> listaEspecialidade; Session session =…
hibernateanswered Erick Ferreira 7 -
0
votes2
answers92
viewsQ: Query with Hibernate error could not get a field value by Reflection
I have two entities: Profession and Specialty. When I select the profession, I would like it to return to me all the specialties that that particular profession possesses. When I send the search, it…
hibernateasked Erick Ferreira 7 -
0
votes1
answer162
viewsQ: Insert foreign key Hibernate
I have four entities (selection, match, bet and bettor) where within the Bet class I have the Ids of a bet and a bettor. When I try to insert a bet by clicking on the match and the player, it…
-
-2
votes1
answer168
viewsQ: Bank Modeling
I am trying to model a bench for a simple Pool for the World Cup games. It would be that way even? The idea is that the person can register and make guesses for each match informing a winner or…
-
0
votes2
answers509
viewsA: Load data into Inputtext JSF + Primefaces
It worked perfectly when I include an id for the panel that would be the Selected Client. Now in this panel that has the data I would like to pass the data to a method. <p:panel header="Cliente…
-
0
votes2
answers509
viewsQ: Load data into Inputtext JSF + Primefaces
I have a page that searches for a client and returns a datatable, with this return I would like to select the client that was selected and popular another inputText with the data that were selected…
-
0
votes1
answer105
viewsQ: Error starting Tomcat server
I am inserting two Hibernate dependencies into my pom.xml <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core --> <dependency>…
-
1
votes1
answer75
viewsQ: Undefined method in Ruby
I’m trying to make a relationship between two tables in Ruby, where I use the student and grades but when I go to localhost:3000/Students/1/Notes it causes me the error my notes_controller.Rb: class…