Java / Lombok Interview questions
How does Lombok handle @ToString with circular references?
Lombok's @ToString doesn't have built-in circular reference detection — if class A has
a @ToString-included field pointing to class B, and B has a field pointing back to A, calling
toString() on either one recurses infinitely (A's toString calls B's toString, which calls A's
toString, and so on) until it overflows the stack with a StackOverflowError.
@ToString public class Parent { private List<Child> children; // danger: each Child references parent back } @ToString public class Child { @ToString.Exclude // break the cycle here private Parent parent; private String name; }
The standard fix is exactly what's shown above: use @ToString.Exclude on whichever side of the
bidirectional relationship you don't need printed — typically the "back-reference" side (child pointing
to parent) — so the generated toString() never actually walks the cycle in the first place.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
