I want to create a spring boot rest controller with this specification :
Customers of an electricity and gas supply company can choose to receive their monthly bills either by email or by regular mail, neither or both.
My goal is to create java hibernate entities to manage these customers and their choices of sending bills.
A utility customer is identified by their email and can have multiple choice change events that change the customer choice status.
Each choice made by a customer generates a choice change event.
A choice change event relates to a customer. A customer can have multiple choice events.
Here are my java entities.
@Entity
@Table(name = "customers")
public class Customer {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
@Email(message="this field must respect the email format !")
private String email;
@ManyToOne
private Choices choices;
}
@Entity
@Table(name = "choices")
public class Choices {
@Id
private String id;
@Column(name = "email")
private boolean isThisChoice;
@OneToOne
private Customer customer;
}
The resulting customer with id 24587 (GET request):
{
"id": "24587",
"email": "tartampion",
"choices": [
{
"id": "regular mail",
"isThisChoice": false
},
{
"id": "email",
"isThisChoice": true
}
]
}
Must I have an entity of management of event of choice of the customer
Here you have to use Many to Many Mapping. Because one customer can have many choices and one choice can be opted by many customers.