• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

My exam cloud mock 4, primary key class

 
Bartender
Posts: 2419
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


The Java Persistence entity UserRole defines a composite primary key that is defined by the two columns userID and RoleID in the DB.
Which two are true?
Choose two.
A. UserRole must define a primary key class to represent the composite primary key.
B. The composite primary key is mapped as two fields in UserRole. No extra primary key class is necessary.
C. The combination of @Embedded and @Embeddable annotations can be used to denote the composite primary key.
D. The semantics of the equals and hashCode methods of the primary key class must be consist with the database equality.
Given answers :A,D.



I think the answers should be A,B,D.
For example, the two id's field should be mapped to the columns
 
Creator of Enthuware JWS+ V6
Posts: 3411
320
Android Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
B is not correct because you need an extra primary key class (the one you are showing: @IdClass(Id.class))
 
reply
    Bookmark Topic Watch Topic
  • New Topic