Tagged Questions
The entity-manager tag has no wiki summary.
8
votes
2answers
201 views
How should EntityManager be used in a nicely decoupled service layer and data access layer?
Somewhat related to my other question Should raw Hibernate annotated POJO's be returned from the Data Access Layer, or Interfaces instead? , I am experienced in creation of nicely decoupled ...
8
votes
2answers
2k views
Symfony2 entityManager in model
I'm going to use entity_manager in my model. But entity_manager is only available in controller: throw $em = $this->get('doctrine.orm.entity_manager'). So, I have to define model methods with $em ...
3
votes
1answer
639 views
Symfony2 entity manager in tests
I'am writing unit-tests for symfony2 project. For example i want to test some class that requires Doctrine\ORM\EntityManger inctance:
// Class for testing
// ...
class CategoryManager
{
public ...
1
vote
2answers
66 views
EntityManager.contains() returns false after persist()
The documentation for EntityManager.persist() says it will Make an instance managed and persistent.
It is persisting the entity to the database, but when I call the EntityManager.contains() method ...
1
vote
2answers
255 views
static access to entity manager in spring and unusual architecture
quick question:
I have webapplication (wicket+spring+jpa) and was thinking about rather unusual architecture design. Please check it out and give your comments.
Consider class Wrapper:
@Service
...
1
vote
2answers
616 views
EntityManager doesn't refresh the data after querying
My current project uses HSQLDB2.0 and JPA2.0 .
The scenario is : I query DB to get list of contactDetails of person. I delete single contactInfo at UI but do not save that data (Cancel the saving ...
1
vote
2answers
1k views
How to force JBoss 4.2.3 to clear hibernate's session cache for every request?
It seems to me that JBoss reuses entity managers and the underlying hibernate sessions for multiple requests. I have run a test which proves that in some cases the state of an entity may be out-dated ...
1
vote
1answer
1k views
How to maintain EntityManager's cache with Hibernate under JBoss in a consistent state?
We are running JBoss with Hibernate and are having this issue.
When a session bean uses an EntityManager to find an entity, it may already exist in the EntityManager's cache and it's state may be ...
0
votes
1answer
24 views
EntityManager Lookup on CMT
I have a doubt a long time and never find the answer, so I appreciate any king of help or explanation... maybe it´s is just a conceptual mistake...
I have an environment where I use CMT and ...
0
votes
3answers
90 views
JPA EntityManager Static or Instance?
I've built some JPA stuff in the past that used an instance of the javax.persistence.EntityManager per instance of DAO; this is the way most examples are setup.
public class ...
0
votes
1answer
65 views
Creating new entry rather than update old entry using Doctrine2
Right now I'm using Doctrine2 in conjunction with Symfony2. I have an entity called "OrderRequest" with contains two references to another entry type called "OrderRequestPerson" (these are the ...
0
votes
1answer
55 views
retrieve from entity manager before ID is given
Here is the situation -
I need to persist an object between pages. On the first page I create the object, and create a form for it. On the second page, I persist the object. The user then has an ...
0
votes
1answer
66 views
Creating metatable for Hibernate domain objects
In my Hibernate + Spring application, I have several annotation based domain objects. I would like to go through all of them and create metatable with definitions for all of them. This metatable ...
0
votes
3answers
251 views
Java /JPA | Query with specified inherited type
I am building a query on a generic table "Sample" and I have several types which inherit from this table "SampleOne", "SampleTwo".
I require a query like :
select s from Sample where s.type = :type
...
0
votes
1answer
609 views
When should EntityManagerFactory instance be created/opened?
Ok, I read bunch of articles/examples how to write Entity Manager Factory in singleton.
One of them easiest for me to understand a bit:
...