假设调用远程接口放回 school 对象,school 对象下包含 student 和 teacher 对象。
现有系统的分层领域模型有:
现有的对象都是放在分层领域模型包下,并以各自后缀大写结尾。
使用远程接口调用放回 school 对象,接收的 school 对象放在 dto 下,那 school 里面的对象 student 和 teacher 也应该放在 dto 下吗?
如果 student 和 teacher 分别定义 studentDTO 和 teacherDTO,则使用 restTemplate.getForObject 接收 student 和 teacher 则不能直接绑定上。
如果后面不加 DTO 而将对象放在 dto 包下,code review 的时候又不符合 DTO 结尾规范。
SchoolDTO school = this.restTemplate.getForObject(invokeUrl, SchoolDTO.class);
1
lidlesseye11 2020-08-19 17:41:02 +08:00
“如果 student 和 teacher 分别定义 studentDTO 和 teacherDTO,则使用 restTemplate.getForObject 接收 student 和 teacher 则不能直接绑定上。”
为啥? |
2
Kirsk 2020-08-19 18:31:40 +08:00 via Android
Data transition object
|
3
Vimax OP @lidlesseye11 如果对方传过来的是 student 和 teacher,我用 studentDTO 和 teacherDTO 接收,结果都是 Null 。同名的情况下则可以绑定上数据。用的是 restTemplate.getForObject.
|