Skip to content

Commit

Permalink
fix: docs jackson-databind jackson-core links
Browse files Browse the repository at this point in the history
  • Loading branch information
sdelamo committed Jan 31, 2025
1 parent 2b16e3a commit cfeff23
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/docs/guide/httpServer/jsonBinding.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
:jackson-annotations: https://fasterxml.github.io/jackson-annotations/javadoc/2.9/
:jackson-databind: https://fasterxml.github.io/jackson-databind/javadoc/2.9/
:jackson-core: https://fasterxml.github.io/jackson-core/javadoc/2.9/

The most common data interchange format nowadays is JSON.

By default, the api:http.annotation.Controller[] annotation specifies that the controllers in Micronaut framework consume and produce JSON by default.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
:jackson-annotations: https://fasterxml.github.io/jackson-annotations/javadoc/2.9/
:jackson-databind: https://fasterxml.github.io/jackson-databind/javadoc/2.9/

If you use <<jsonBinding, `micronaut-jackson-databind`>>, the Jackson's `ObjectMapper` can be configured through configuration with the api:io.micronaut.jackson.JacksonConfiguration[] class.

All Jackson configuration keys start with `jackson`.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
:jackson-databind: https://fasterxml.github.io/jackson-databind/javadoc/2.9/

If you use <<jsonBinding, `micronaut-jackson-databind`>>, in addition to configuration, beans can be registered to customize Jackson. All beans that extend any of the following classes are registered with the object mapper:

* link:{jackson-databind}com/fasterxml/jackson/databind/Module.html[Module]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
:jackson-core: https://fasterxml.github.io/jackson-core/javadoc/2.9/
:jackson-databind: https://fasterxml.github.io/jackson-databind/javadoc/2.9/

If you use <<jsonBinding, `micronaut-jackson-databind`>>, all Jackson's features can be configured with their name as the key and a boolean to indicate enabled or disabled.

|======
Expand Down

0 comments on commit cfeff23

Please sign in to comment.