Hi @here,
Clojure noob and java dev here.
Wanted to convert a tree object into clojure object. This is not the definite end goal.
Aim is to provide a human readable intermediate language that will have parameterized methods for similar subtrees that will provide lazy initialization for breadth first search from root. (Not a proper BFS, you have expand and create objects for all children and when a node is selected among children, you have to get all its children. So, more like, expand all nodes, select a node, repeat)
This will again output a data format like yaml.
When I tried to do traversal in the clojure with java.data lib, it threw error because the objects were not pure java beans. So, I plugged into the name space and changed a method definition to use reflection instead of getter, setters.
Then it was working for simple cases but even slightly large case, I am getting stack overflow error. Is that normal?
I did not create the intermediate language in clojure yet, I just created the object and tried to convert.
I increased the stack memory, still I was not able to solve this.