Timyooo
Results
1
issues of
Timyooo
很多接口,在业务调用过程中会调用RemoteIdmServiceImpl来获取人员信息。 比如下面这个获取任务的接口,就会使用RemoteIdmServiceImpl `@RequestMapping( value = {"/rest/tasks/{taskId}"}, method = {RequestMethod.GET}, produces = {"application/json"} ) public TaskRepresentation getTask(@PathVariable String taskId) { return this.taskService.getTask(taskId); }` 问题是在调用http接口时,这个url地址不在项目中,请问这个接口是包含在哪个接口包中的,希望能将该接口包引入,谢谢。 `JsonNode json = this.callRemoteIdmService(this.url + "api/idm/users/" +...