重构get请求代码---PartyLocation
将原理在PersonDto中定义的partyLocations,剪切到PartyDto中去。
@JsonApiToMany private List<PartyLocationDto> partyLocations;
重构PersonConverter中的updateDto方法,
@Overridepublic void updateDto(Person entity, PersonDto dto) { Locale l = currentUserProvider.get().getLocale(); partyConverter.updateDto(entity, dto); dto.setPronunciation(entity.getPronunciation()); ....}
PartyConverter代码重构如下:
public class PartyConverter implements Converter<Party, PartyDto> { @Inject private ApiContext apiContext; @Override public void updateDto(Party party, PartyDto partyDto){ partyDto.setId(party.getId()); partyDto.setName(party.getName()); partyDto.setSpecificResourceType(new ResourceDto(apiContext.getResourceType(party), partyDto.getId())); setPartyLocations(party, partyDto); } @Override public void updateEntity(PartyDto dto, Party entity) { // System.out.println("--"); PersonEntity personEntity = (PersonEntity)entity; } public void setPartyLocations(Party party, PartyDto partyDto){ List<PartyLocationDto> partyLocationDtoList = new ArrayList<PartyLocationDto>(); if(Objects.isNull(party.getPartyLocations())){ return ; } for(PartyLocation partyLocation:party.getPartyLocations()){ PartyLocationDto partyLocationDto = new PartyLocationDto(partyLocation.getId()); partyLocationDtoList.add(partyLocationDto); } partyDto.setPartyLocations(partyLocationDtoList); } }
修改relationship:注意,传递的参数是PersonDto,如果是PartyDto,则会报错relationship出错,思考为什么。
@Singleton public class PersonToPartyLocationRelationship extends AbstractEntityToPartyLocationRelationship<PersonDto> { }
public abstract class AbstractEntityToPartyLocationRelationship<S extends AbstractKatharsisDto> extends AbstractRelationshipRepository<S, PartyLocationDto> { @Override public List<PartyLocation> getTargetEntities(Object source, String fieldName, QueryParamsHelper helper) { Party sourceEntity = cast(source); List<PartyLocation> partyLocations = new ArrayList<PartyLocation>(); if(!Objects.isNull(sourceEntity.getPartyLocations())){ partyLocations.addAll(sourceEntity.getPartyLocations()); } return partyLocations; } @Override public void addRelations(S source, Iterable<String> targetIds, String fieldName) { } }
再次编译,则可以get请求成功。同时,post请求也是ok的。
补充:何时调用relationship,这是kathasis内部自己定义的,与类名是没有关系的,主要是和传递的泛型参数有很大的关系。--------感谢andrew指导分析这个知识点。
重构get请求代码---PartyLocation的更多相关文章
- HTTP请求代码整理
HTTP请求代码整理 类别 代码 注释 1xx – 信息提示 100 继续 101 切换协议 2xx - 成功 200 确定.客户端请求已成功 201 已创建 202 已接受 203 非权威性信息 2 ...
- jmeter 的java请求代码在main方法里面执行
1.新建一个java请求执行加法类 public class TestDemo { public int Tdemo(int a,int b){ int sum = 0; sum = a+b; ret ...
- 如何重构"箭头型"代码
本文主要起因是,一次在微博上和朋友关于嵌套好几层的if-else语句的代码重构的讨论(微博原文),在微博上大家有各式各样的问题和想法.按道理来说这些都是编程的基本功,似乎不太值得写一篇文章,不过我觉得 ...
- 使用策略模式重构switch case 代码
目录 1.背景 2.案例 3.switch…case…方式实现 4.switch…case…带来的问题 5.使用策略模式重构switch…case…代码 6.总结 1.背景 之前在看<重构 ...
- js基石之---易读、易复用、易重构的 JavaScript 代码规范
易读.易复用.易重构的 JavaScript 代码规范 1.变量命名规范有意义 Bad: const yyyymmdstr = moment().format("YYYY/MM/DD&quo ...
- RAID5 IO处理之写请求代码详解
我们知道RAID5一个条带上的数据是由N个数据块和1个校验块组成,其校验块由N个数据块通过异或运算得出,这样才能在任意一个成员磁盘失效时通过其他N个成员磁盘恢复出用户写入的数据.这也就要求RAID5条 ...
- .NET重构—单元测试的代码重构
阅读目录: 1.开篇介绍 2.单元测试.测试用例代码重复问题(大量使用重复的Mock对象及测试数据) 2.1.单元测试的继承体系(利用超类来减少Mock对象的使用) 2.1.1.公用的MOCK对象: ...
- C# 主动发起请求代码
本文用于写代码是给提示 private string GetHW(string uri) { string returnStr = ""; HttpWebRequest hwReq ...
- 重构 MVC; 代码分享工具(重构,改进,打分)
include 模块和 extend 模块的不同: Class Extension: 通过向singleton class中加入Module来定义class method,是对象扩展的一个特例. ...
随机推荐
- php是如何工作的
a:前提条件: apache服务器启动正常工作 b:客户端浏览器在地址栏输入一个程序地栏 按回车发送请求 {请求}http://127.0.0.1/day03/1.php c:apache接收请求,并 ...
- Boost 读写锁
//#########测试多线程,读写锁,递归锁 #include <boost/thread.hpp> #include <boost/thread/recursive_mutex ...
- Bender Problem
Robot Bender decided to make Fray a birthday present. He drove n nails and numbered them from 1 to n ...
- LeetCode Minimum Index Sum of Two Lists
原题链接在这里:https://leetcode.com/problems/minimum-index-sum-of-two-lists/description/ 题目: Suppose Andy a ...
- LeetCode 315. Count of Smaller Numbers After Self
原题链接在这里:https://leetcode.com/problems/count-of-smaller-numbers-after-self/ 题目: You are given an inte ...
- php中empty(), is_null(), isset()函数区别(转)
empty(), is_null(), isset()真值表(区别) 我们先来看看这3个函数的功能描述 www.111cn.net isset 判断变量是否已存在,如果变量存在则返回 TRUE,否 ...
- 异常:SQL Error: 1064, SQLState: 42000
在MySQL中,有很多字符被MySQL保留了.如果你用来做列名或者表名就会出现问题. 我这里出现的问题是采用了order作为表明,这是一个保留字,所以出现问题.
- CentOS 7.2 PowerShell下安装Azure Module
目前Linux版本的PowerShell还是Alpha版本,所以很多功能不能使用. 比如通过Powershell命令:install-module AzureRM在线安装Azure的Module.但我 ...
- MySQL 5.6 date 与 string 的转换和比较
我们有张表,表中有一个字段 dpt_date ,SQL 类型为 date,表示离开日期. 我们将 dpt_date 与字符串 ‘2016-03-09’ 进行比较,发现效率低于 dpt_date 转换为 ...
- C# winfrom FastReport Print
1.引用 using FastReport; using FastReport.Barcode; 2.code private void toolStripButtonPrint_Click(obje ...