in the lombok builder pattern, how to build instance of a target class which reference another class instance? ```java class A { private String fieldA; } @Data @Builder class B { private String fieldB; private A a; } ` appreciate for any help~~
in the lombok builder pattern, how to build instance of a target class which reference another class instance?