Spring RestAPI with Feign Client and Pageable



我有一个工作 API,其中包含我需要的所有 CRUD 方法,但我还有一个 Feign 客户端,当我的可分页 GET 方法被调用时,它会抛出我和异常。我尝试将其更改为List<>,但最终我需要它保持可分页,此时我对正在发生的事情一无所知。

这是原始 API 上的工作控制器:

@RestController
@RequestMapping("/cargos")
public class CargoController {

@Autowired
private CargoService cargoService;
// ACHAR TODOS
@GetMapping
public Page<Cargo> consultar(Pageable paginacao) {
return cargoService.consultar(paginacao);
}

}

这是原始 API 上的服务:

@Service
public class CargoService {
@Autowired
private CargoRepositorio repositoryCargos;
// BUSCA TODOS
public Page<Cargo> consultar(Pageable paginacao) {
return repositoryCargos.findAll(paginacao);
}
}

这一切都有效,但在 Feign 客户端中,每次调用 get 方法时,它都会抛出异常:

catch (InvocationTargetException ex( { ReflectionUtils.rethrowRuntimeException(ex.getTargetException(((;

这是我的假装客户的方式,我得到了服务:

@FeignClient(url="http://localhost:8080/cargos",name="cargo")
public interface CargoFeign {
//BUSCA TODOS
@GetMapping
Page<Cargo> consultar(Pageable paginacao);

和调度程序:

@Component
@Slf4j
public class CargoScheduler {
@Autowired
private CargoFeign cargoFeign;
@Scheduled(cron = "0/1  * * * * *")
public void executar() {
log.debug("executando");
// BUSCANDO TODOS OS CARGOS
Pageable paginacao = PageRequest.of(0, 10, Sort.by( Order.asc("id")));
Page<Cargo> cargo2 = cargoFeign.consultar(paginacao);
System.out.println("Listando Cargos");
System.out.println(cargo2);
}

您可以使用 Spring HATEOAS 提供的资源或资源。 您需要在客户端添加 Spring HATEOAS 依赖项:

compile('org.springframework.boot:spring-boot-starter-hateoas')

在主类中启用 Spring Boot 的超媒体支持:

@EnableHypermediaSupport(type = EnableHypermediaSupport.HypermediaType.HAL)

并更改您的假客户端:

@FeignClient(url="http://localhost:8080/cargos",name="cargo")
public interface CargoFeign {
//BUSCA TODOS
@GetMapping
Resources<Cargo> consultar(Pageable paginacao);

澄清一下,这个 answear 有点帮助

Spring 数据分页不支持作为 Feign 客户端中的请求参数

这就是我的假装客户现在的样子

//BUSCA TODOS
@GetMapping("/pagina/{paginaAtual}/tamanho/{tamanho}")
Page<Cargo> findAll(@PathVariable("paginaAtual") Integer paginaAtual, @PathVariable("tamanho") Integer tamanho);

相关内容

  • 没有找到相关文章

最新更新