如何使用RestTemplate处理另一个项目中的异常

时间:2018-03-26 13:07:50

标签: exception-handling spring-data-jpa

在下面的代码中,我试图根据nDeptId找出部门表数据。如果该对象为null,则抛出DataRetrievalFailureException。如何使用RestTemplate

在另一个spring项目中处理此异常
  Department deptmentObj = new Department();
                deptmentObj = depRepo.findByNDeptId(accountObj.nDeptId);

                if (deptmentObj == null) {
                    throw new DataRetrievalFailureException("DataRetrievalFailureException for ndeptid");
                }
    }

任何人都可以告诉我需要改变什么吗?

0 个答案:

没有答案