I am using Spring 3.0.5.RELEASE and Hibernate 3.6.1.Final. Reading from the MySql DB is ok, but when I try writing to it I get this in the log:
I\'m using jpa criteria query. Is it possible to filter an entity by the type of some of it\'s atributes?
Merged with Referential integrity with One to One using hibernate. I have following Entity - @Entity public class Foo {
I\'m building an application using JPA 2.0 (Hibernate implementation), Spring, and Wicket开发者_StackOverflow. Everything works, but I\'m concerned that my form behaviour is based around side effects.
I have a table of the following columns: Timestamp(timestamp), data(integer), id1(integer), id2(integer)
I have built an application with EJB\'s and JPA2.If I have my page running and I change something in the database it will not show on the page.I\'ve tried different browsers, non caching sessions of t
i have the following 2 JPA classes: @Entity public class AnalysisPolicy { private Set rules; //stuff omitted
I\'m using Hibernate 3.5.6 as my JPA 2.0 implementation. I\'m attempting to build an @ElementCollection inside my entity (many fields omitted):
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
Here are the sequences leading to the question : I have a Team record, and 3 Player records in the database. Team entity has a List that is using FetchType.LAZY, CascadeType.ALL