Description
None
Environment
None
Activity
Show:
CharlieM June 24, 2024 at 11:38 AM
Something went wrong on our end
If this keeps happening, share this information with your admin, who should contact support.
Hash 190P1Z5
Trace 399f1a4be30e441484e7c13b9ae657c3
Details
Details
Assignee
Reporter
Bug Testcase Reminder (view)
Bug reports should generally be accompanied by a test case!
Bug Testcase Reminder (edit)
Bug reports should generally be accompanied by a test case!
Participants
CharlieM
Community Help Wanted
Yes, please
In order to fix the bad behavior, this statement
@ManyToOne(fetch=FetchType.LAZY) @JoinColumn(name="GROUP_ID") public AccessGroups getAccessGroups() {
Should be replaced by
@ManyToOne(fetch=FetchType.LAZY) @MapsId("groupId") @JoinColumn(name="GROUP_ID") public AccessGroups getAccessGroups() {