Best entity relationship approach

Im storing transactions in my application that consist of a sender and a receiver, this is my entity class for it:
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private User sender;
private User receiver;
private Item item;
private LocalDateTime createdAt;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private User sender;
private User receiver;
private Item item;
private LocalDateTime createdAt;
what would be the best approach for the relationship here? create a oneToMany relationship with both sender and receiver? Or just store the IDs for sender and receiver instead of the User object?
5 Replies
JavaBot
JavaBot2mo ago
This post has been reserved for your question.
Hey @Victor! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
dan1st
dan1st2mo ago
I'd just create to onetomany relationships
Victor
VictorOP2mo ago
how should i go about mapping on the User entity side? if it can be mapped by either sender or receiver? the user entity has a list of transactions which i would like to include every transaction regardless if he is a sender or a receiver or do i need to create two separate lists to map to sender and receiver
dan1st
dan1st2mo ago
You can do both or none whatever you need
JavaBot
JavaBot2mo ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.

Did you find this page helpful?