SpringCloud使用Feign进行远程调用的时候接口的必须加上@RequestParm注解
@Component
@FeignClient(name = "demand-service")
public interface DemandClient {
@GetMapping("demand")
public List<Demand> queryAllDemands( Date begin,Date end);
}
错误启动:
在每个Date数据类型前面加上@RequestParm注解正确