Tagged Questions
The EntityManager is the representation of a PersistenceContext, allowing a user to manipulate data pulled from a database.
108
votes
4answers
65k views
JPA EntityManager: Why use persist() over merge()?
EntityManager.merge() can insert new objects and update existing ones.
Why would one want to use persist() (which can only create new objects)?
22
votes
4answers
16k views
Injecting EntityManager Vs. EntityManagerFactory
A long question, please bear with me.
We are using Spring+JPA for a web application. My team is debating over injecting EntityManagerFactory in the GenericDAO(a DAO based on Generics something on the ...
9
votes
4answers
2k views
Using EntityManager inside Doctrine 2.0 entities
I have 2 entities: Country (id, name) and Mapping (id, object, internalId, externalId).
Country and Mapping are not connected with associations (because Mapping has rows not only for country). I need ...
8
votes
1answer
458 views
Symfony2: how to get all entities of one type which are marked with “EDIT” ACL permission?
The title already says it: can someone tell me how to get all entities of one type which are marked with "EDIT" ACL permission?
I would like to build a query with the Doctrine EntityManager.
7
votes
5answers
730 views
JPA @OneToOne throws Error when mapped to an abstract @Entity with subclasses
I have a problem when an Entity is mapped to another Entity which has a direct implementation on its subclasses. See sample mapping below:
@Entity
class Location {
@OneToOne
...
6
votes
2answers
2k views
Spring + Hibernate + JPA [closed]
As of now I have a working Spring application with persistence. However now I want to use Hibernate with JPA to do all of my database activities. I want to do this using an entitymanager.
I've been ...
5
votes
4answers
3k views
Fixing Null EntityManger in Spring MVC application?
In the following code I am trouble with my injected EnitityManager, which always shows up as null;
public class GenericController extends AbstractController {
@PersistenceContext(unitName = ...
4
votes
3answers
161 views
Strange JPA behaviour: tables cleaned at app boot
Almost all is in the title... Persistence is working fine when app launched, and row are still in DB when the app is closed, but once app is loaded, rows got deleted...
I'm using an already existing ...
4
votes
1answer
1k views
How to mock EntityManager?
I need to mock entity-manager to make testing service layer (in my case a session facade) to be independent of the underlying layer (which in my case is the entity-manager).
So how i can accomplish ...
4
votes
1answer
5k views
In Spring, how do I use a ClassPathXmlApplicationContext to get an EntityManager?
With Spring I can autowire a bean with the following property:
@PersistenceContext(unitName="foo") private EntityManager em;
Using the following I can manually autowire the bean "someBean":
...
4
votes
2answers
6k views
Is it necessary to call a flush() (JPA interface) in this situation?
Because calling a flush() to get every entities persist from memory to database. So if I use call too much unnecessary flush(), it could take much time therefore not a good choice for the performance. ...
4
votes
5answers
6k views
How to change Entity type in JPA?
In my specific case, I am making use of a discriminator column strategy. This means that my JPA implementation (Hibernate) creates a users table with a special DTYPE column. This column contains the ...
4
votes
3answers
4k views
JPA EntityManager find with case sensitive key
I'm trying to use the JPA EntityManager find() method. My primary key is a string which corresponds to a user's name.
I am using JPA / Hibernate / MYSQL.
My problem is a search for user 'David' ...
3
votes
2answers
69 views
Retrieve Entities throught stateless local EJB from statefull EJB (Long conversation using session-per-conversation)
First, I have a stateless bean which do a simple retreive, looking like this.
@Stateless
@LocalBean
public A {
@PersistenceContext
private EntityManager em;
public MyEntity ...
3
votes
1answer
81 views
OpenJPA Transactions - Single or Multiple Entity managers?
I have a DBManager singleton that ensures instantiation of a single EntityManagerFactory. I'm debating on the use of single or multiple EntityManager though, because a only single transaction is ...
3
votes
2answers
917 views
what is difference between EntityManager.find() and EntityManger.getReference()?
Whats is the difference between
<T> T EntityManager.find(Class<T> entityClass, Object primaryKey) and
<T> T EntityManager.getReference(Class<T> entityClass, Object ...
3
votes
1answer
2k views
JPA 2 - Using the EntityManager in JavaSE - a couple of questions
I have a couple questions regarding using the entity manager in a JavaSE environment.
I'm using the repository pattern to perform my CRUD operations on the database. There will be a base repository ...
3
votes
4answers
2k views
How to use JUnit tests with Spring Roo? (Problems with EntityManager)
I'm trying to write a JUnit test for a Spring Roo project. If my test requires use of the entity classes, I get the following Exception:
java.lang.IllegalStateException: Entity manager has not been ...
3
votes
2answers
483 views
How to prevent non-repeatable query results using persistence API in Java SE?
I am using Java SE and learning about the use of a persistence API (toplink-essentials) to manage entities in a Derby DB. Note: this is (distance learning) university work, but it is not 'homework' ...
3
votes
3answers
3k views
Am I supposed to call EntityManager.clear() often to avoid memory leaks?
I'm new to JPA/OpenJPA and I noticed that if I don't call EntityManager.clear() after i persist entities I get an OutOfMemoryError (I keep adding new entities in a loop). I'm not sure if this is the ...
2
votes
2answers
87 views
Catch PersistenceException or ConstraintViolationException in JBoss7
I'm in the migration process from JBoss6 to JBoss7 and have trouble with my tests. Let's assume a simple entity EJB:
@Entity public class MyTest implements Serializable
{
@Id ...
2
votes
0answers
51 views
Doctrine 2: reattaching entities through value objects
I'm working with Doctrine 2, and have an Address value object:
class Address
{
/** @var string */
protected $street;
/** @var string */
protected $city;
/** @var ...
2
votes
1answer
33 views
JPA does not add Id to database from wrapping object
Using JPA I have a dataconfiguration, which is added to the database with no problems:
@Entity @Table(name = "dataConfigurations", uniqueConstraints = {@UniqueConstraint(columnNames = ...
2
votes
1answer
82 views
hibernate jpa entitymanager commit not writing objects to the database
I'm using hibernate JPA (without Spring) and it's working well, but I have come across a problem which has stumped me for the last 3 days.
I have written some generic DAO classes and am using them to ...
2
votes
2answers
165 views
JPA merge vs. persist
So far, my preference has been to always use EntityManager's merge() take care of both insert and update. But I have also noticed that merge performs an additional select queries before update/insert ...
2
votes
1answer
53 views
How can the JPA recognize two classes with the same name but in different packages?
I use JPA and Hibernate for my project. I have two classes with same names but in different packages. They are:
@Entity(name = "X_USER")
@Table(name = "X_USER")
public class User {
and:
@Entity
...
2
votes
2answers
97 views
EntityManager does not write to database
i just set up a so far still quite minimal project maven/jpa/hibernate project, where i am trying to persist an object.
My class is a quite simple one:
@Entity
public class Person {
@Id ...
2
votes
1answer
159 views
FLOW3 Doctrine2 :: SELECT b,count(b) FROM (SELECT a,b FROM x\y\z GROUP BY a) GROUP BY b
I'm quite new to FLOW3 and I'm very new to Doctrine.
I'm just running some tests, and I want to learn or understand some techniques that I'll use later on. Now I'm stuck with this doctrine part where ...
2
votes
1answer
152 views
Spring can't find bean named entityManagerFactory
I have a web application that uses spring and hibernate for JPA support, but when I open my Index page this exception happens:
http://pastebin.com/0X1GG9GQ
But I think my applicationContext.xml is ...
2
votes
0answers
77 views
How do I tell if my EntityManager is using JTA or RESOURCE_LOCAL datasource?
I have a utility class as shown below. I want to be able to use this class with either RESOURCE_LOCAL or JTA persistence units. If I change the persistence.xml from JTA to RESOURCE_LOCAL I shouldn't ...
2
votes
1answer
111 views
JPA and JPQL: NoResultException when selecting from multiple tables where one value is null
I'm using Java EE 6 and query a database using JPA's javax.persistence.Entitymanager. I have a JPQL query code snippet that looks like something like this:
Query query = entityManager.createQuery("
...
2
votes
5answers
121 views
How to avoid overwriting of non-null values with null values?
I'm using spring MVC for receiving a JSON from client and automatically create an object from it. The problem is that the client doesn't send to server all the fields that are in the entity, but some ...
2
votes
1answer
137 views
Hibernate java.lang.ClassCastException: org.hibernate.action.EntityIdentityInsertAction cannot be cast to org.hibernate.action.EntityInsertAction
I'm using Hibernate with an EntityManager. When I use
Session session = (Session)entityManager.getDelegate();
session.flush();
session.clear();
I get
java.lang.ClassCastException: ...
2
votes
2answers
203 views
entityManager.getTransaction().rollback() detaches entities?
I have the following piece of code:
EntityManagerFactory emf = Persistence.createEntityManagerFactory("test")
EntityManager entityManager = emf.createEntityManager()
User user = ...
2
votes
2answers
84 views
Trying to find an entity in the database
I have a code like this:
AJPAController aJPAController;
AClass aClass = aJPAController.find((Integer.parseInt(request.getParameter("id")));
try{
if(aJpaController.contains(aClass)){
...
2
votes
2answers
980 views
javax.ejb.EJBException when persisting an entity
I have an entity called Medico which was created as an Entity Class from Database, hence I think the entity definition is failsafe here, nevertheless the definition is the following:
@Entity
...
2
votes
0answers
373 views
Issue configuring JPA entitymanager from Jboss 4.2.2 Spring 2 TO Jboss 6 Spring 3
EntityManager is null (not injected) whith jboss6 spring 3 JPA2 hibernate
trying to migrate an existing App running on Jboss4.2.2 Spring 2 to
Jboss 6 Spring 3
Afer many try the App is correctly ...
2
votes
1answer
283 views
JPA Toplink - what is the need of checking active transaction in the beginning of process?
I've seen few sample on internet that checks whether the transaction is currently active at the beginning of the process.
The code below which is mine get EntityManager from the factory.
I can't ...
2
votes
1answer
1k views
Seam - get Connection via (Session)em.getDelegate();
I use the Seam framework.
If I do
Session sess = (Session)em.getDelegate();
Connection conn = sess.connection();
Is this then a new connection?
And do I have to close the connection manually?
I ...
2
votes
1answer
230 views
TestNG: Identifying which tests methods are next
My goal is to clear() my javax.persistence.EntityManager after each test method.
Here's an example of a test class:
public class Example
{
@Test(dataProvider = "sampleDataProvider")
public ...
2
votes
3answers
370 views
How frequently should I create an EntityManager?
I have an EntityManagerFactory for which I can create one (or multiple) EntityManager instances. I'm using a Servlet environment, and I've got one EntityManagerFactory wired up to the servlet (via the ...
2
votes
2answers
864 views
problem with using JPA
I am getting following exception while i try to execute simple jpa code.
What may be the casue?
5453 DevPQRWDPBSSPersist WARN [P=351601:O=0:CT] openjpa.Enhance - This configuration disallows ...
2
votes
2answers
239 views
JPA - database gets updated only when method is @Transactional
I've encountered a problem I don't really understand - unless a method working with the DAO is annotated as @Transactional, the underlying database doesn't get updated. My app runs on JPA/Hibernate, ...
2
votes
1answer
231 views
java and jboss, with SQL server. Mulitple insert statements in a native query using entitymanager, not working; but does work in sql
String myQuery1 = "insert into mytable(mycol) values(myval) \ngo";
String myQuery2 = "insert into mytable(mycol) values(myval2) \ngo";
String myQuery = myQuery1 + myQuery2;
Query query = ...
2
votes
4answers
909 views
How to use JPA EclipseLink to connect to the DB in a multi layer environment (REST + EJB + Core)?
I am using Glassfish v3 server.
Usually the DB connection with EJB3 + JPA (Eclipselink) is done through injection, with @PersistenceUnit or @Persistencecontext.
However, there are 3 layers in my App ...
2
votes
2answers
818 views
What is the proper way to ensure EntityManager connections are closed?
There are 19 methods in our DAO layer, each is some variation of this:
public TicketProp saveTicketProp(TicketProp prop) {
EntityManager em = this.emf.createEntityManager();
try {
...
2
votes
1answer
1k views
Injecting Entitymanager via XML and not annnotations
What I am trying to do is inject through XML almost the same way that is done through A @PersistenceContext annotation. I am in need of this because of the fact I have different entity managers I ...
2
votes
1answer
489 views
Spring, Hibernate, EntityManager and class inheritance
I'm pretty much new to Spring & Hibernate. In our team, we are building a web application using Struts 2 for the presentation layer, with Spring 3 and Hibernate 3 (with Annotations) underneath. We ...
1
vote
0answers
35 views
Inject EntityManagerFactory in a servlet dispatcher (non managed)
I want to create a servlet dispatcher capable of doing some JPA operations. This servlet must not have any dependencies on Spring or EJB. So, my intention is to inject EntityManagerFactory to it ...
1
vote
1answer
36 views
Why isn't the database being updated when I refresh the entity manager?
I'm currently developing a social networking site and I'm currently implementing the part where a user can change his password. I'm using the entity manager to refresh the contents of the database ...