Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
3k views

Hibernate SessionFactory vs. EntityManagerFactory

I am new to Hibernate and am unclear of whether to use a SessionFactory or EntityManagerFactory to obtain the hibernate session. What is the difference between the two? Pros & Cons?
5
votes
1answer
2k views

Spring + EntityManagerFactory +Hibernate Listeners + Injection

i have a simple question. Its possible to add dependency injection via @Ressource or @Autowired to the Hibernate Eventlistener? I will show you my entitymanagerfactory configuration: <bean ...
4
votes
1answer
7k views

hibernate, mysql, glassfish v3, and JTA datasource

I'm attempting to use hibernate entity manager with mysql and glassfish. I'm getting the following error when attempting to use a JTA datasource: Caused by: org.hibernate.HibernateException: The ...
2
votes
2answers
218 views

Filter JPA Entities without removing them from database

i have a database table "viewmodule" with a FK to itself (parent_id) to allow recursive structures. CREATE TABLE viewmodule ( id, type, parent_id, hide); My Java application uses JPA/Hibernate to ...
2
votes
2answers
1k views

How can i get the session object if i have the entitymanager

I have private EntityManager em; public List getAll(DetachedCriteria detachedCriteria) { return detachedCriteria.getExecutableCriteria( ??? ).list(); } How can i retrieve the session if am ...
2
votes
1answer
518 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
1answer
239 views

JPA - createEntityManagerFactory returns Null

Noob question here. I'm following this example/tutorial to try and isolate a problem I keep getting on my main project. Problem is, the entityManagerFactory keeps returning null (thus, I get a ...
1
vote
1answer
267 views

EntityManager.unwrap() throws java.lang.AbstractMethodError

I'm having some issues implementing JPA 2.0 in my app. I'm using Criteria queries and I need to grab the session from the EntityManager. I do it in the following way (according to this) Session ...
1
vote
2answers
1k views

Hibernate Entity manager auto flush before query and commit changes to DB in transaction

I am using Hibernate 3.6.0 with JPA 2 on Jboss AS 6.0.0 final. In an EJB of mine, there's a method which updated entity values and do some query on it. The whole method is running in a BMT ...
1
vote
2answers
902 views

Declared metamodel attributes work fine BUT Inherited Metamodel Attributes are NULL. Why?

I am not able to run the following test:- @Test public void test() { EntityManager em = entityManagerFactory.createEntityManager(); em.getTransaction().begin(); CriteriaBuilder builder = ...
1
vote
1answer
378 views

multiple entitymanagers in a transaction

I am writing an application that will move data from one database to another Using JPA EntityManager API. My questions are : 1. Can i use multiple entity managers in a single transaction? 2. Can i ...
1
vote
2answers
944 views

How to detect transaction conflicts with Hibernate?

I am using Hibernate 2.6 with hibernate-entitymanager. I am trying to catch and handle situations when 2 transactions conflict on an object. Here is what happens: Two threads are updating a single ...
1
vote
1answer
694 views

Can a single EntityManager (Hibernate) participate in multiple concurrent transactions?

Is there a way one EntityManager can participate smoothely in multiple concurrent transactions? Well, not that concurrent. Something like: Start tx 1 Do stuff in tx 1 Start tx 2 Do stuff in tx 2 ...
1
vote
1answer
551 views

Hibernate EntityManager + JOTM: transactions are not used

I am trying to integrate together JOTM and Hibernate EntityManager to test my EJBs in a transactional manner environment but out-of-container. My test looks like the following: Start JOTM Put ...
0
votes
1answer
162 views

how to @FilterJoinTable with EntityManager in Hibernate JPA?

I would like to limit the data that is coming from OneToMany relation. In my program the boss account can view all the company's that have orders in the given month and year. The company class can ...
0
votes
0answers
187 views

JPA EntityManager is not initialized (null)

Im new to JPA I generated the following code using reverseEngineering tool (Hibernate). But the entitymanager always null. I do not know what to do please guide me. Is there anything that I should ...
0
votes
1answer
107 views

hibernate commit: shows committed in log, but actually it does not

Please have a look at this code. Persist works for a table called Candidate and it does not for another table called VerifyLink, whereas, hibernate shows that it is being persisted in the log file. ...
0
votes
1answer
83 views

Hibernate on non-managed environment

I got an small problem, I always worked with Hibernate and Spring on Web stuff with a GenericDAO pattern, now I'm using Hibernate for a GUI app which doesn't use anything like EJB and stuff. My main ...
0
votes
2answers
223 views

Persistence.createEntityManagerFactory clearing out the whole database

I'm currently working with a project using Hibernate + JPA. I don't recall exactly what I changed in the project, but everytime I try to instantiate a new EntityManagerFactory, it clears out the hole ...
0
votes
2answers
2k views

How to use JOIN using Hibernate's session.createSQLQuery()

I have two Entity (tables) - Employee & Project. An Employee can have multiple Projects. Project table's CREATOR_ID field refers to Employee table's ID field. Employee entity does not maintain any ...
0
votes
2answers
946 views

JPA2 + Hibernate + Order By

Is it possible (using Hibernate and JPA2 Criteria Builder [1]) to order by a method's result rather than an entity's member? public class X { protected X() {} public String member; ...