The Java Persistence Architecture API (JPA) is a Java specification for accessing, persisting, and managing data between Java objects / classes and a relational database. JPA was defined as part of the EJB 3.0 specification as a replacement for the EJB 2 CMP Entity Beans specification. JPA is now ...
0
votes
1answer
97 views
+50
EntityManager remove() call not updating database
I have a basic Java project setup using JPA. I have classes which are annotated properly and can insert data into my PostgreSQL database without any trouble.
My question... and I may find that I ...
1
vote
1answer
56 views
+50
QueryDSL joins generate invalid SQL
I'm trying to convert the following SQL query in QueryDSL (JPA, Hibernate provider, Oracle database):
select c.id
, c.name
, count(coalesce(s.company_id_source, t.company_id_target))
...
-1
votes
0answers
35 views
+50
ignorecase in criteria builder in JPA
Friends
How can we do a ignorecase in the criteria builder if I have
private final criteriaBuilder cb then i can only use cb.asc or cb.desc
but not the ignorecase
Please suggest
1
vote
0answers
25 views
+50
GlassFish Server deployment and MySQLNonTransientConnectionException
When I deploy my application, after a while I get this exception:
javax.servlet.ServletException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): ...
