Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在类中定义了一个 JsonParser。我将穿越它。但是当我这样做时,我需要获取我所在的当前节点的完整路径。在不影响性能的情况下提取完整路径的最佳方法是什么。Jackson 中是否有一个 API 已经可以做到这一点?
您可以使用 获取上下文信息JsonParser.getParsingContext()。或者,如果您想要相对于输入源(行、列)的位置,您可以使用JsonParser.getLocation().
JsonParser.getParsingContext()
JsonParser.getLocation()