Dimension scores are derived from public data and fields; weighted into the composite. Reference only.
JSONBeam is a JSON data access and projection library for Java. Conceptually, it is similar to XMLBeam, but its goal is to access JSON through JSONPath-like queries. Its core idea is not to build a full DOM or object graph first, but to evaluate all queries in a single pass while parsing the document, using index structures to improve query performance and reduce object allocation and memory usage.
Based on the description, JSONBeam focuses on performance and large-file handling: it uses a non-recursive parser to support deeply nested JSON; creates compressed indexes for large files instead of object graphs; minimizes object allocation and buffer copying; and plans to support a compact JSON variant with unquoted keys/values. Functionally, it aims to provide JSONPath-like read projections, and also mentions write-side deletion, updates, and JSON structure writing. It also aims to minimize output changes during read/write operations, making clean diffs easier to obtain.
It currently explicitly supports Java 8 and above. The license follows a dual-license model: open-source projects can use GPL V3, while a commercial license is planned for version 1.0.0 and above. A backport for versions before Java 8 is also planned under the commercial license, but the page does not disclose specific pricing, payment methods, or a purchase entry point.
Its strength is a very clear goal: JSONPath-like query performance, low memory usage for large files, and parsing of deeply nested structures. This makes it suitable for Java scenarios where the cost of traditional DOM/object mapping is a concern. The downside is equally clear: the current version is only 0.0.2, and the page explicitly marks it as “highly experimental.” The index structure is still being evaluated, many edge cases are not implemented, and type conversion is not yet available. As a result, it is more of a technical prototype or early-stage library than a mature production component that can be depended on directly.
It is suitable for Java developers, library authors, or teams researching high-performance JSON query engines for technical evaluation. It is not recommended for direct use in core production paths unless you can accept the risks of validating and filling in gaps yourself. The text does not provide information about access from China, so this needs to be tested in practice. If you need mature alternatives, consider more complete ecosystems such as Jackson, Gson, JSON-B, or Jayway JsonPath.
⚠ This review is compiled from public sources and does not constitute a purchase recommendation. Verify all facts on the vendor's official site. Verify on jsonbeam.org official site.
jsonbeam.org is an Unknown Dev Tools provider. TG4G tracks its product information, an overall rating of 5.0/10, and a China-accessibility score of China direct-connect friendly. Click "Visit Official Site" to reach jsonbeam.org directly.