I'm getting a stack overflow when trying to serialize this: ``` public class HashTree<K, V> extends HashMap<K, HashTree<K, V>> ``` Is this a limitation of Jackson or am I doing something wrong? http://stackoverflow.com/questions/12466292/serializing-a-recursive-class-with-jackson-json Thanks!