Hibernate EntityManager implements the programming interfaces and lifecycle rules as defined by the JPA 2.0 specification.

learn more… | top users | synonyms

0
votes
0answers
25 views

EntityManager.merge persistence issue

I have a fairly standard code like this. public class Parent(){ private List<Child> childs; ...... } And in Action Class, I have two methods each of which corresponds to ...
0
votes
2answers
31 views

Not able to wire entityManager with applicationContext bean

I am facing a problem to wire entity manager with the bean present in application context. whenever i do some operation it gives NullPointerException. this is my applicationContext.xml file <?xml ...
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 ...
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

Annotation exception

I had this exception when trying to insert into a table. org.springframework.dao.InvalidDataAccessResourceUsageException: could not load an entity: [model.Structure#5]; nested exception is ...
0
votes
1answer
336 views

No unique bean of type [javax.persistence.EntityManagerFactory] is defined: expected single bean but found 0

I have a problem with my spring security/hibernate app, which i can't resolve, since i'm new to spring and also hibernate. Here's my problem: ...
0
votes
1answer
100 views

Override EntityManager.remove() in Spring Roo

I would like to override the EntityManager.remove() method for certain entities so that I can set an active boolean attribute to false rather than remove the object from the database entirely. This ...
0
votes
1answer
66 views

search engine with createQuery does not work

I just want to code a simple search engine using JPA. Here's example of native sql request that works with PHP : "SELECT mobiles.brand, argus_waitings_mobiles_prices.mobile, ...
1
vote
0answers
161 views

JPA+ORACLE: Can't pass boolean param to my stored procedure

I can not pass boolean param to my stored procedure in Oracle. If I set value directly in the query text (mypackage.Test(?, false, ?, ?);) all work fine... jdbc-driver: ojdbc6.jar container: ...
0
votes
1answer
90 views

NullPointerException occured when I use the EntityManagerFactory

My goal is to instanciate the EntityManagerFactory from applicationContext.xml file to get all posts registered in SQL database. Here's the content of the main files : applicationContext.xml ...
0
votes
1answer
244 views

Compare Date from the database with current date using jpa

I am using JPA 1 with hibernate as provider. I want to compare date of the entity with current date(regardless of time) and I am saving that field as timestamp(as i need it). I was getting the correct ...
0
votes
1answer
399 views

Hibernate Entity Manager: Result Set Mapping

I'm new to Hibernate and I am a fan of iBATIS, but my new work environments forces me to use Hibernate. In the current scenario at my workplace, there are many complex select queries that I feel ...
0
votes
0answers
52 views

Hibernate 4 EntityManager and Configuration instance

How do I expose a configuration instance from a Hibernate EntityManagerFactory? I'd like to use it later in my app to generate SQL Scripts using SchemaUpdate.
0
votes
0answers
220 views

Error on creating bean entity entityManagerFactory

I am trying to deploy my war with a controller and a datasource to my local MySQL database. I have this config on my root-context.xml: <!-- Root Context: defines shared resources visible to all ...
0
votes
1answer
111 views

How to commit and rollback data after getEntityManager.perist(object)

Now I am using jpa with hibernate , when i was done getEntityManager.persist(objects) then i will ask for user confirmation like continue and rollback using user interface private ...
0
votes
3answers
819 views

Hibernate update with EntityManager

I am using Hibernate 4.1.7 and trying to update object, but theres no documentation how it should be done. Currently, I am doing this: Person person = personDao.getPersonById(1); ...
0
votes
1answer
332 views

JPA EntityManagerFactory

I use jpa in my project. But I must call all method and ever connect to database. I want to connect once database with entitymanagerfactory and other method want used. I made static ...
0
votes
1answer
183 views

Hibernate Batch Update

I am trying to update a collection of a Java entity, but the order in which Hibernate executes the batch update leads to a constraint violation exception. I will use the following example to explain ...
0
votes
1answer
1k views

java.lang.IllegalStateException: EntityManager is closed

I'm building a JAR file, deploying to JBoss 4.2.3.GA (can't help it), with Hibernate 4.1.5.SP1 with validator 4.3.0.Final. The database is MySQL 5.5. I'm having problems executing basic selects ...
0
votes
0answers
216 views

Transform HQL results to a custom class

Im using hibernate-entitymanager-4.1.6.Final, and have an HQL query as "select t,orgunit.name as UnitName from User where inuse=1" The orgunit is mapped as LAZY join on User class. I have a class ...
1
vote
0answers
1k views

Hibernate EntityManager 4 ClassNotFound Exception

I upgraded my application from hibernate-entitymanager-3.6.10.Final to hibernate-entitymanager-4.1.6.Final by using maven. At the application initialization phase it raised the following error; ...
0
votes
1answer
181 views

complex query to equivalent criteriabuilder query(EntityManager)

My Query is this: query1 = select a.id from entity1 a where a.id in (:List1) and not exists (select ex2 from entity2 ex2 where ex2.assignedId = a.id) union select ex.assignedId from entity2 ...
1
vote
1answer
511 views

Using Hibernate 4.1 & JPA 2.0 with an Entity Manager, what is the optimal way to load multiple entities with sub-entities down to multiple levels?

We are using Hibernate 4.1.4 with an entity manager implementation and are very pleased with it. When loading a single entity or small sets of entities (10-50 + sub-entities) we get excellent ...
0
votes
0answers
260 views

Access Hibernate Configuration object with Play Framework

I'm using Play Framework 2.0.2 with Hibernate (through JPA). I need to do configuration.registerTypeOverride() during startup to make Hibernate use the correct postgres uuid column. How do I get ...
0
votes
2answers
291 views

Does Hibernate flush after the whole transaction is committed?

I have two application First Application will persist into a database in a while loop , the loop will end after a long time (say 10-15 minutes). But The second application needs the data that the ...
1
vote
1answer
1k views

hibernate not-null property references a null or transient value:

This problem appears randomly. Program has worked well for over a month and today it crashed. While adding a new order the user can choose a company from the dropdown list. Then he can save new order ...
0
votes
2answers
497 views

Spring + Hibernate + Maven NullPointerException

I thought it was a good idea to add some testing to my project, but during the process I somehow managed to get the real deal broken. I am using Spring MVC with JPA (Hibernate). The entityManager ...
2
votes
2answers
4k views

Spring 3.1 + Hibernate 4.1 JPA, Entity manager factory is registered twice

I'm using Spring Framework 3.1 with Hibernate 4.1 as a JPA provider, and I have a fully functional setup, but every time the web app is started I see this warning message: 14:28:12,725 WARN ...
2
votes
1answer
330 views

Hibernate EntityManager persist() and database round trip count

Right now I am using entitymanager to insert list of object entity to database with my dao using code like this. @Transaction public void insertBatch(List<EntityObject> o){ for(int ...
0
votes
1answer
7k views

Unable to build EntityManagerFactory - Spring and Hibernate

I am getting following error while deploying spring application with hibernate3 to glassfish server 3.1.2: SEVERE: Exception while loading the app SEVERE: log4j:ERROR LogMananger.repositorySelector ...
1
vote
0answers
233 views

Why doesn't createQuery() on the javax.persistence.EntityManager work with upper case attribute?

I've encountered a behaviour of javax.persistence.EntityManager I'd like to understand. I had code similar to the following: 1 // Query Execution 2 EntityManager emext; 3 String query = "SELECT ...
6
votes
1answer
931 views

JPA EntityManager persist() causing object to appear detached even though an error was thrown

Hi I have a simple DAO with the below function. public element createElement(Element e){ em.persist(e); em.flush(); return e; } The Entity table has a unique constraint on the ...
0
votes
1answer
1k 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 ...
1
vote
1answer
2k 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
779 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 ...
3
votes
2answers
815 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 ...
0
votes
1answer
297 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
178 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 ...
2
votes
2answers
5k 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 ...
40
votes
2answers
13k 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?
0
votes
2answers
822 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 all of ...
0
votes
2answers
6k 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 ...
13
votes
2answers
8k 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 ...
5
votes
1answer
4k 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 ...
2
votes
2answers
2k 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
703 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
2k 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; ...
2
votes
1answer
755 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 ...
7
votes
1answer
12k 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 ...
1
vote
2answers
1k 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 2