10

I've got really simple and standard OrderRepository:

@RepositoryRestResource(collectionResourceRel="orders", path="orders")
public interface OrderRepository extends ReactiveCrudRepository<Order, String> {
}

After hitting the server with:

curl http://localhost:8080/api/orders

I'm getting the following response:

{"cause":null,"message":"reactor.core.publisher.FluxOnErrorResume cannot be cast to java.lang.Iterable"}
Oliver Drotbohm
  • 80,157
  • 18
  • 225
  • 211
Daniel
  • 109
  • 1
  • 7

1 Answers1

11

Nope, not yet. Follow this ticket for progress on that topic.

Oliver Drotbohm
  • 80,157
  • 18
  • 225
  • 211