Tagged Questions
0
votes
2answers
118 views
persistencecontext makes queries empty
I recently changed my JPA design for that :
persistence.xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0"
xmlns="http://java.sun.com/xml/ns/persistence" ...
0
votes
3answers
342 views
Using Hibernate or TomEE?
I have an EJB-based library that needs to be modified to be compatible with Tomcat application server (i.e. no JaveEE). I browsed a bit on Hibernate and got rather confused.
Apparently, there's the ...
1
vote
2answers
853 views
TomEE and Hibernate dependencies
I have created very simple app with persistence context (hibernate as provider) to read some value from database. I use Eclipse with Maven.
First, I get
Caused by: ...
1
vote
1answer
1k views
TomEE + EclipseLink: EntityManager injection not working
I'm trying to get this JPA + EJB + Facelets example running in TomEE Web Profile.
Because the sample uses EclipseLink, I downloaded EclipseLink and copied eclipselink/jlib/eclipselink.jar into the ...
2
votes
1answer
1k views
DDL generation and general persistence.xml settings (OpenJPA)
Summary
I'm trying to run a Java web application JPA 2.0 example. The example application was written to run in Glassfish, using EclipseLink as JPA provider.
I would like to convert it to run in ...
2
votes
1answer
328 views
TomEE 4 JPA issue
I am trying out simple JPA example on TomEE 4.0.0 and I am not able to get PersistenceContextType.EXTENDED working
If I make my session bean Stateless and leave PersistenceContextType then it works ...