在下面的代码中,我试图根据nDeptId找出部门表数据。如果该对象为null,则抛出DataRetrievalFailureException
。如何使用RestTemplate
Department deptmentObj = new Department();
deptmentObj = depRepo.findByNDeptId(accountObj.nDeptId);
if (deptmentObj == null) {
throw new DataRetrievalFailureException("DataRetrievalFailureException for ndeptid");
}
}
任何人都可以告诉我需要改变什么吗?