You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Overview
2
2
3
-
This projects contains [Jackson](http://http://wiki.fasterxml.com/JacksonHome) extension component for
3
+
This projects contains [Jackson](http://wiki.fasterxml.com/JacksonHome) extension component for
4
4
reading and writing [XML](http://en.wikipedia.org/wiki/Xml) encoded data.
5
5
6
6
Further, the goal is to emulate how [JAXB](http://en.wikipedia.org/wiki/JAXB) data-binding works
@@ -23,7 +23,7 @@ Specifically:
23
23
# Status
24
24
25
25
Version 2.0 works for significant number of XML/JAXB use cases.
26
-
Missing functionality is tracked via [Issue tracker](./issues).
26
+
Missing functionality is tracked via [Issue tracker](https://github.com/FasterXML/jackson-dataformat-xml/issues).
27
27
28
28
There are older versions (1.9.2) available, which work with older Jackson versions (0.6.2): this is maintained on "1.9" branch,
29
29
and uses different group id ("com.fasterxml" as well as artifact id ("jackson-xml-databind")
@@ -125,14 +125,14 @@ Simple value = xmlMapper.readValue("<Simple><x>1</x><y>2</y></Simple>", Simple.c
125
125
126
126
## Additional annotations
127
127
128
-
In addition to standard [Jackson annotations](jackson-annotations) and optional JAXB (`javax.xml.bind.annotation`), this project also adds couple of its own annotations for convenience, to support XML-specific details:
128
+
In addition to standard [Jackson annotations](https://github.com/FasterXML/jackson-annotations) and optional JAXB (`javax.xml.bind.annotation`), this project also adds couple of its own annotations for convenience, to support XML-specific details:
129
129
130
130
*`@JacksonXmlElementWrapper` allows specifying XML element to use for wrapping `List` and `Map` properties
131
131
*`@JacksonXmlProperty` allows specifying XML namespace and local name for a property; as well as whether property is to be written as an XML element or attribute.
132
132
*`@JacksonXmlRootElement` allows specifying XML element to use for wrapping the root element (default uses 'simple name' of the value class)
133
133
*`@JacksonXmlText` allows specifying that value of one property is to be serialized as "unwrapped" text, and not in an element.
134
134
135
-
for longer description, check out [XML module annotations](../../wiki/Jackson-XML-annotations).
135
+
for longer description, check out [XML module annotations](https://github.com/FasterXML/jackson-dataformat-xml/wiki/Jackson-XML-annotations).
136
136
137
137
## Known Limitations
138
138
@@ -148,4 +148,4 @@ Currently, following limitations exist beyond basic Jackson (JSON) limitations:
148
148
149
149
# See Also
150
150
151
-
See [wiki page](jackson-dataformat-xml/wiki) for more information
151
+
See [wiki page](https://github.com/FasterXML/jackson-dataformat-xml/wiki) for more information
0 commit comments