I would like to avoid duplicating my POJOs in a microservices application, so I am wondering if there is a way to do that (like proxying)?
I mean, is there a way for a Service A to access POJOs (or other classes/interfaces) defined inside a Service B without physically creating these POJOs classe files in Service A?
The big big challenge in a microservice architecture is that point and I didn't find a way to solve it.