All Questions
2 questions
5
votes
1
answer
4k
views
Custom ResponseModel for Spring Controller - ResponseEntity<?>
I created a custom responseModel to have a standard json responseModel for some of my different RestController.
Superclass TransactionResponseModel:
...
3
votes
2
answers
5k
views
DAOs for Person, Employee, Staff, etc
I have an abstract PersonDao class, extended by several other DAO classes, for example EmployeeDao, ...