I have defined a pointcut using the @Aspect annotation in my class. I configure the pointcut using a custom annotation which I have defined in my context:
I have defined this Entity class, but it does not seem to save the children to the database. Any ideas?
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 part
A @Stateful EJB can use Persist开发者_如何学运维enceContextType.EXTENDED for reusing the same EntityManager across multiple transactions. This is useful in implementing conversational scopes. Does Spr
I\'m having huge performance issues with my Eclipse RCP application, apparently caused by Hibernate. To be more specific, the application takes extremely long to start up (up to 2 minutes) - profiling
I have run into a pretty strange error that I can\'t get my head around. In short: I have an ImporterBean that should read an xml file and then do s开发者_JS百科tuff.
Almost all is in the title... Persistence is working fine when app launched, and row are still in DB when the app is closed, but once app is loaded, rows got deleted...
I use the Seam framework. If I do Session sess = (Session)em.getDelegate(); Connection conn = sess.connection();
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 $e
Today I\'ve confused. is ja开发者_Go百科vax.persistence.entitymanager a JPA interface? ThanksYes, it\'s an interface, and Hibernate provides an implementation.