We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given XML file as
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true" monitoring="autodetect" dynamicConfig="true"> <cache name="charityCache" maxEntriesLocalHeap="1000" eternal="false" timeToIdleSeconds="2" timeToLiveSeconds="20" memoryStoreEvictionPolicy="LFU" transactionalMode="off"> <persistence strategy="none" /> </cache> <cache name="charityTagsCache" maxEntriesLocalHeap="1000" eternal="false" timeToIdleSeconds="20" timeToLiveSeconds="60" memoryStoreEvictionPolicy="LFU" transactionalMode="off"> <persistence strategy="none" /> </cache> </ehcache>
At the moment it misses attribute info when converted into JSON via:
$.convert(dom).to(JSONObject.class);
This CR is to add support to XML attributes into target JSON object
The text was updated successfully, but these errors were encountered:
XML to JSON conversion - convert attributes #240
54ce705
greenlaw110
No branches or pull requests
Given XML file as
At the moment it misses attribute info when converted into JSON via:
This CR is to add support to XML attributes into target JSON object
The text was updated successfully, but these errors were encountered: