The EntityManager is the representation of a PersistenceContext, allowing a user to manipulate data pulled from a database.
0
votes
0answers
11 views
How does an JPA EntityManager injected using @PersistenceContext behave if you use an Injected UserTransaction to begin and commit transactions
Why does the JEE6 tutorial recommend injecting an EntityManagerFactory as opposed to EntityManager in application managed EntityManager?
Also , are there any issues if I am using an Interceptor to ...
0
votes
2answers
19 views
Update only changed entity fields and check for changes by other users in EJB
In an EJB-class i have two methods with remote interface:
Class MyBean {
public CustomerEntity getCustomer(String id) {......}
public void updateCustomer(CustomerEntity newValues, ...
0
votes
2answers
23 views
Symfony2, Doctrine2, EntityManager disable last actions
We have
foreach ($rwst as $row)
{
$loopData = XmlFunctions::getXmlAttrAsArray($row);
if (!$loopData)
{
return false;
}
$oCharacters = new XmlAccountCharacters();
...
0
votes
1answer
16 views
Unable to create JBoss Seam EntityManager
This is so frustrating, here is the error log for the past 3 days. I'm not really sure what to do. Please help me. The source is included below.
2013-05-20 10:52:44,197 ERROR [STDERR] ...
1
vote
1answer
19 views
when I am running test cases that time entity manager is injected successfully but while running web app its throwing NullPointerException
I have a strange problem. I am injecting the entity manager using PersistenceContext using applicatioContext bean. But problem is that when I am running test cases that time entity manager is injected ...
0
votes
0answers
16 views
JPA updating Embeddable entities implicitly
I have an Embeddable JPA entity (X) with 2 fields. Now both B and C which are JPA entities are having a reference to (X) with the @Embedded annotation.
Furthermore A has a reference to B and B has a ...
0
votes
0answers
34 views
JPA entity manager from Datasource during runtime
I'm wondering if there is possibility to create EntityManager from defined datasource in AS during runtime via JNDI lookup. Imagine that administrator configures a new datasource within the AS (TomEE, ...
0
votes
1answer
31 views
Entitymanager, too many connections
I create only one session factory for the whole progamm and create everytime i want to persist/update/query smth. an new entity manager but i get always an to many connection error. Can anybody give ...
0
votes
1answer
58 views
Spring Data JPA: Repositories for multiple database / Entitymanger configurations
I have two Entitymanager bean configurations. Each pointing to a separate database with a different schema (one is Oracle, the other one is an in-memory H2)
What could I do to solve the ambiguity of ...
-2
votes
2answers
53 views
Eclipselink -Glassfish project Object is not a known entity type error
In a JSF 2.1 - Spring 3.1 integrated project.I m trying to handle transaction by container i m using eclipselink 2.3.2 ,Glassfish 3.1.2 and Maven on my project and working on Netbeans IDE 7.2 .
At ...
0
votes
2answers
28 views
EntityManager not persisting in JavaFx
I'm working on a desktop application using JavaFx and Postgres and I'm using NetBeans I use JPA to interact with my DataBase, I successfully created my EntityManager but it seems not to be persisting ...
0
votes
1answer
53 views
Delete rows in a batch using JPA EntityManager
I was trying to delete rows in a batch using JPA EntityManager. I got the following exception.
java.lang.IllegalStateException: Not allowed to create transaction on shared EntityManager - use Spring ...
0
votes
0answers
22 views
How do I get a non-Transient field into @PrePersist or any other Listener method with EclipseLink?
I need a field (String would be OK) in a @PrePersist method of an EntityListener. Any field which does not go to the database (meaning a @Transient field) does not reach the @PrePersist (or any other) ...
0
votes
2answers
39 views
JPA EntityManager and JavaFx [duplicate]
I tried to use EntityManager in a JavaFx application in NetBeans (my solution is connected to postgres), I proceeded as follows :
1) I created a Persistence Unit.
2) Then Added the Entity Classes ...
0
votes
0answers
10 views
Entity manager for appcelerator mobile
I know that joli library is a ORM for appcelerator but I want to know that is there any entity manager for appcelerator mobile?
0
votes
1answer
70 views
Entity Manager not working in JavaFX
I'm using Persistence unit and Entity classes from Database, all in a JavaFx fxml Application, I succeeded importing all my tables as entities in my Model, the proble is that I get an exceptions and ...
1
vote
1answer
30 views
EnityManager query returns a strange unaccessible object
I have 2 entities connected through join annotations and everything works fine except for the query result which is strange.
So I have this class say Cat and the other class say Home. So if I execute ...
0
votes
0answers
17 views
what is right place to close entitymanager? (openjpa)
i dont know where exactly inside my code should i close entitymanager, by logic i think it should be when i logout?
i'm using entitymanager factory.
private static EntityManager entityManager = ...
0
votes
1answer
31 views
WAS 8.0.0.2: JNDI lookup on persistence-context-ref returns always new EntityManager instance
Hi WAS developers,
I have problem that a JNDI lookup on a declared persistence-context-ref always returns a new EntityManager instance. I expect that within one JTA transaction the container provides ...
1
vote
1answer
57 views
Bad performance for the entity manager commit - Exponential
Im using the entity manager JPA with eclipse link 2.3 &Derby db and I have model with 10 entities and for each entity I need to store 1000 records ,this process takes about 70 sec. I have test it ...
0
votes
2answers
34 views
Entitymanager not persist
I have problem with entitymanager in my application. It doesn't persist objects to DB
../java/resources/META-INF/persistence.xml
<persistence-unit name="dataSource" ...
0
votes
0answers
60 views
How to use c:forEach to put basic data in a HTML list?
I'm a very-beginner at JSP programming, but I have good knowledges in HTML, Java, and SQL, so here is my problem.
I have a DB with a NAME table containing data like this:
id name
1 JohnLennon
2 ...
0
votes
0answers
26 views
Restrict loading of Object hierarchy using CriteriaBuilder
I have Class hierarchy as following
Class A{
int aId;
@OneToMany(cascade=CascadeType.ALL, fetch=FetchType.EAGER)
B objB;
}
Class B{
@OneToMany(cascade=CascadeType.ALL, ...
0
votes
3answers
50 views
JPA cannot delete entities with a onotomany relation and a cascatype all
I am trying to delete an entity but when I use the entity manager i do not have errors but te data is still in the database, I am using cascade all, independently of this, I am deleting its parent ...
1
vote
0answers
35 views
Best Practices when using JPA and detach()
I'm using the following JPA entity:
@Entity @Table(name = "FOO")
public class Foo {
@Id @Column(name = "ID")
private Integer id;
@Column(name = "NAME")
private String name;
// ...
0
votes
1answer
30 views
How to delete superclass entity whose subclass entity has been removed in Hibernate?
There are two entity classes A and B, and instances a, b (a and b have same id). B is subclass of A ( B extends A). I removed an entity "b" from database. Then, I saw that "a" has not been deleted. ...
0
votes
1answer
56 views
EntityManager from container in SpringBeanAutowiringInterceptor-created context
I have an EJB that's annotated as follows:
@Stateless
@Interceptors(SpringBeanAutowiringInterceptor.class)
The SpringBeanAutowiringInterceptor creates a ClassPathXmlApplicationContext which in turn ...
0
votes
0answers
27 views
Symfony2, Clone EntityManager or how create new instance of it
Of course we can do this :
public function __construct (EntityManager $em)
{
$this->em = $em;
}
and use EntityManager what ever we want. But... I need create standalone EntityManager in ...
0
votes
1answer
43 views
speed up the commit of the entity manager for 3000 recordes
Im having 3 entities each entity with 5 members string and I want to persist 1000 records for each entity .
when I did performance testing the entitymanager.commit() takes about 1.1 seconds ,
I think ...
0
votes
1answer
59 views
JTA EntityManager without manual commits
I'm trying to move out my project from Seam 3.
Now I'm stuck on JTA transactions after switching off Seam Faces module. There was integrated transaction management. Transactions were begun and commit ...
1
vote
1answer
60 views
duplicate key error in entitymanager with correct object to persist
I have the following entity TitleScreenFormat and when i do entitymanager.commit
I getting the following error
Internal Exception: java.sql.SQLIntegrityConstraintViolationException:
The statement ...
1
vote
1answer
50 views
When using JPA entityManager why do you have to merge before you remove?
For a while now I have been wondering why when using JPA, do I have to write my delete methods like this:
@Transactional
public void delete(Account account)
{
if (entityManager.contains(account))
...
0
votes
1answer
32 views
Table does not exist error despite I have it
when I use the entity manager commit I got the following error:
the entity title is exist and doesnt have any error what could be the reason for this error
Table/View 'S1_MANAGER' does not exist.
...
0
votes
1answer
101 views
How to use silex with Doctrine orm EntityManager?
Am new to the Silex framework. And I would like to do simple SQL DB connection using doctrine entity manager. Kindly give some simple examples.
Thanks in Advance,
SK
0
votes
2answers
29 views
save entity with null reference
I would like to know if for example I have entity like customer and customer addresss and address is a reference in
in customer what will happen if I dont find match with the entities keys some ...
0
votes
0answers
140 views
entityManager.find() returning null
I am using a Derby Database,
here is the entity that the find is executed on
package ca.etsmtl.gti525.entity.presentation;
import ca.etsmtl.gti525.commun.CommunService;
import java.io.Serializable;
...
0
votes
1answer
51 views
checking null return from database using getSingleResult of entity manager
I have to retrieve the db entry. I know the query I have written returns only one row. Therefor I am using getSingleResult. However when the query returns a null, I am not able to catch it. How do I ...
0
votes
1answer
38 views
JPA One to One Relationship
My User.java JPA code
public class User implements java.io.Serializable {
private String mobile;
private String emailId;
private String userName;
private String password;
...
1
vote
0answers
23 views
Ejb3Configuration.buildEntityManagerFactory performance
We have about 150 classes mapped to 150 tables, and build the
EntityManagerFactory as follows:
Code:
Ejb3Configuration cfg = new Ejb3Configuration();
Class[] types = new Class[150] { ....};
for ...
0
votes
1answer
25 views
Is it OK to flush the EntityManager from within a domain Service?
I have a domain service called OrderService, with a saveOrder() method:
class OrderService
{
// ...
public function saveOrder(Order $order)
{
...
0
votes
2answers
101 views
Transaction required exception on execute update for JPQL update query
I get this error when I try to run this code.
Error:
javax.persistence.TransactionRequiredException: executeUpdate is not supported for a Query object obtained through non-transactional access of a ...
1
vote
2answers
88 views
When use createQuery() and find() methods of EntityManager?
I would like to know the difference between on these methods.
When use the createQuery()and find() methods of EntityManager ?
What the advantages about each of them ?
Thank you for answer me.
1
vote
2answers
122 views
JPA - Changing a reference to an existing (but detached) entity causes a duplicate to be inserted
I have two entities with a uni-directional many-to-one relationship:
Many Bars have one Foo
When I try to update a managed Bar instance by changing its Foo to an existing detached Foo instance, ...
0
votes
1answer
106 views
Entitymanager throwing NullPointerException
Am developing a JavaEE application using Netbeans.The Entity Manager is getting a null value in the application. The em is not getting injected.
Still am getting a nullPointerException as em is ...
0
votes
3answers
234 views
Heroku/Play/BoneCp connection issues
I have an app on heroku that uses play. It was working fine for the longest time, but somewhat recently I started getting this:
Caused by: java.sql.SQLException: Timed out waiting for a free ...
1
vote
2answers
99 views
Why cannot I use persist in a object which has been taken from database?
I thought that I can do persist using the method persist of entitymanager in my objects of spring. Actually I use spring roo. But when I take a object from database I cannot do it:
object.persist(); ...
1
vote
1answer
85 views
JPA entries are not created or retrieved
I'm having program that creates JPA entries with the entity manager.
during the process I don't get any errors.
...
factory = Persistence.createEntityManagerFactory("perst");
EntityManager ...
0
votes
2answers
71 views
error while tring to create new entry on jpa table
Im using the following code the insert data to JPA and Im getting error when im trying to do the commit ,the object is with the full data so i dont understand what am I missing here,any idea?
...
1
vote
1answer
78 views
JTA & MySQL - How to Retrieve records from database
I am new to JTA and I need a method to retrieve some some elements from the database. I can do this through EntityManager but that works only for ResourceLocal.
I want to know how can I do this:
...
0
votes
3answers
65 views
ResourceLocal to JTA
I am developing an web application and I have to use JTA which I never used. I started using EntityManager but it seems not to work here. When I use EntityManager I get this message:
Only persistence ...




