Skip to content
New issue

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

Fix Jackson reference #36366

Merged
merged 1 commit into from
Dec 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/java-api/docs/index_.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ There are several different ways of generating a JSON document:
equivalent

* Using a third party library to serialize your beans such as
http://wiki.fasterxml.com/JacksonHome[Jackson]
https://github.com/FasterXML/jackson[Jackson]

* Using built-in helpers XContentFactory.jsonBuilder()

Expand Down Expand Up @@ -60,7 +60,7 @@ json.put("message","trying out Elasticsearch");
[[java-docs-index-generate-beans]]
===== Serialize your beans

You can use http://wiki.fasterxml.com/JacksonHome[Jackson] to serialize
You can use https://github.com/FasterXML/jackson[Jackson] to serialize
your beans to JSON. Please add http://search.maven.org/#search%7Cga%7C1%7Cjackson-databind[Jackson Databind]
to your project. Then you can use `ObjectMapper` to serialize your beans:

Expand Down