I have a DAO which makes a call to a REST WS. In order to prevent non-valid data sent by the WS, i want to implement a validator.
Where must i implement it ?
1 - in the dao layer, inside the DAO object.
2 - in the dao layer but in a separate class, as the DAO must only do CRUD
3 - in the service layer
Other question : i want to throw an exception when a non-valid data occurs.
Checked or Unchecked ?
I precise that i use Spring Security and when i will call my Service, i will have to catch this exception in order to transform it in an AuthenticationException spring exception.
Thank you very much.