i'm using spring boot, jackson and hibernate for a basic backend with an rest (more or less rest..) api.
Now the issue is, that i'd like to use the entity and not wanna use a dto to keep complexity low.
The issue is, that when i retrieve an entity with a collection, jackson will fetch stuff and yes there is a circle in it.
What i would prefer is to be able to use spring data, jackson and the entity class but controlling the associations manually.
I don't want to configure it with JsonIgnore or other annotations.
Tx!