All Questions
2 questions
1
vote
5
answers
933
views
DTO vs POJO (Entity) on POST request
If I have for example a User POJO like the following
@AllArgsConstructor
public class User {
@Id
private final String id;
private String username;
private String password;
private Date createdDate;...
1
vote
1
answer
841
views
Have generic methods that transfer DTO's from different packages, but contain same fields
I have 3 services Service A, B, C which put and get data to/from Service D
+============================================+
| Service A | Service B | Service C |
+==============================...