Linking between objects on different apps with Spring HATEOAS
问题 I'm investigating spring-cloud and I've set up two microservices "offers" and "customers" as eureka clients. The customers app has: @Data public class Customer extends ResourceSupport { private Long customerId; private String name; } @RestController @RequestMapping("/customers") @ExposesResourceFor(Customer.class) public class CustomersController { ... } and the offers app has: @Data public class Offer extends ResourceSupport { private final Long offerId; private final Long priceI; private