Posts by Antony Maia • 11 points
4 posts
-
0
votes0
answers12
viewsQ: java.lang.Classnotfoundexception: javax.persistence.Persistence
I am in error when using Entitymanagerfactory, is a web project with Hibernate + JPA This is the mistake: java.lang.Classnotfoundexception: javax.persistence.Persistence at…
-
0
votes2
answers2620
viewsA: How to resolve? No converter found capable of Converting from type [java.lang.String] to type [@org.springframework.data.jpa.Repository.Query]
I don’t know if this is your case but I was having a mistake, I modified my: @Query("SELECT clientes.cod_cliente, clientes.nome FROM Clientes clientes") I modified it to: @Query(value = "SELECT…
-
0
votes1
answer197
viewsA: JPA connection to Firebird error
Solved, it worked after modifying the dependency tag Scope <dependency> <groupId>org.firebirdsql.jdbc</groupId> <artifactId>jaybird-jdk18</artifactId>…
-
0
votes1
answer197
viewsQ: JPA connection to Firebird error
I always used mysql for the database, but now I have a need to connect with a band Firebird(FDB) in a project, I am using Maven, when trying to connect spring returns me the following error: Caused…