-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Entity refreshing problem
PostPosted: Sun Aug 02, 2009 1:47 pm 
Newbie

Joined: Sun Aug 02, 2009 1:21 pm
Posts: 1
Hi.
I have a problem with a refreshing entity. Please look at the very simple example:
class A {
...
private static void test() throws Exception
{
EntityManagerFactory factory = Persistence.createEntityManagerFactory("PC");
while(true)
{
EntityManager manager = factory.createEntityManager();
List<Entity> entities = manager.createNamedQuery("getEntities").getResultList();
for(Entity entity : entities)
System.out.println(entity);
manager.close();
Thread.sleep(1000);
}
}
...
}
Next i run this test. If i update some row in the table entities manually i can't see changes on the console print.
The test program prints the same data. But if i restart the test i see new data.
Is it correct behavior? What do i need to get an up-to-date result?
Thanks.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.