Choose a topic to test your knowledge and improve your JPA skills
What are the JPA @Entity association attributes?
JPA implementation is provided by ---?
______ has stated that ideas came from several frameworks, including Hibernate and JDO.
What is the Life Cycle Of A Jpa Entity?
What's true about the following @Entity association between House and Window? @Entity public class Window { @Id private int winNo; @ManyToOne private House aHouse; } @Entity public class House { @Id private int houseNo; @OneToMany(mappedBy="aHouse") private List windows; }
Which annotation is used to create Pk-Fk relation b/w two tables?
Object/relational metadata can be specified directly in the entity class file by using annotations, or in a separate ________ descriptor file distributed with the application.
What is TRUE about the cascading and cascade mode attributes in Entity Beans?
Which attribute of @OneToMany is used to mark an entity as owned?
What is the JPA equivalent of hibernate.cfg.xml file?