FasterXML / FasterXML/jackson-dataformat-xml
Support extracting the whole DOM model under given XML element
- Ngôn ngữ chính
- Java
- Star
- 631
- Fork
- 246
- Merge trung bình
- 7 ngày 9 giờ
- Pull request đã merge (30 ngày)
- 13
Mô tả
Let's have a following XML:
```
value
text
...
```
Support use-case of extracting contents of the whole DOM structure. can be any proper XML, text or CDATA block of unknown structure. The idea is to make it possible to extract such structure and save it rawElement field of your POJO.
Currently (2.11) to achieve it, inside a JsonDeserializer for rawElement you can read tree using json parser, however it's not possible to get XML structure. You can use the JsonNode & put it into XMLMapper.writeValueAsString, still it's a workaround rather than a solution.
According to Tatu from jackson-user:
"it'd be necessary to expose a "native" XML
type, like `org.w3c.dom.Node` (or `Element`?).
Currently binding would try to re-parse textual content, but it would
be relatively easy to change that, possibly along
with configuration setting to select new or old approach."
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Đánh giá
Issue này chưa được đánh giá.