• 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

My exam cloud mock 4, primary key class

 
Bartender
Posts: 2442
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: 3412
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))
 
There's a city wid manhunt for this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic