Skip to content

Commit b873d88

Browse files
christophstroblmp911de
authored andcommitted
Document SpringDataJacksonModules in web support section.
Closes #2288 Original pull request: #2289.
1 parent 130db32 commit b873d88

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/main/asciidoc/repositories.adoc

+24
Original file line numberDiff line numberDiff line change
@@ -1362,6 +1362,7 @@ The configuration shown in the <<core.web,previous section>> registers a few bas
13621362

13631363
- A <<core.web.basic.domain-class-converter>> to let Spring MVC resolve instances of repository-managed domain classes from request parameters or path variables.
13641364
- <<core.web.basic.paging-and-sorting,`HandlerMethodArgumentResolver`>> implementations to let Spring MVC resolve `Pageable` and `Sort` instances from request parameters.
1365+
- <<core.web.basic.jackson-mappers, Jackson Modules>> to de-/serialize types like `Point` and `Distance`, or store specific ones, depending on the Spring Data Module used.
13651366

13661367
[[core.web.basic.domain-class-converter]]
13671368
===== Using the `DomainClassConverter` Class
@@ -1524,6 +1525,29 @@ The assembler produced the correct URI and also picked up the default configurat
15241525
This means that, if you change that configuration, the links automatically adhere to the change.
15251526
By default, the assembler points to the controller method it was invoked in, but you can customize that by passing a custom `Link` to be used as base to build the pagination links, which overloads the `PagedResourcesAssembler.toResource(…)` method.
15261527

1528+
[[core.web.basic.jackson-mappers]]
1529+
==== Spring Data Jackson Modules
1530+
1531+
The core module, and some of the store specific ones, ship with a set of Jackson Modules for types, like `org.springframework.data.geo.Distance` and `org.springframework.data.geo.Point`, used by the Spring Data domain. +
1532+
Those Modules are imported once <<core.web, web support>> is enabled and `com.fasterxml.jackson.databind.ObjectMapper` is available.
1533+
1534+
During initialization `SpringDataJacksonModules`, like the `SpringDataJacksonConfiguration`, get picked up by the infrastructure, so that the declared ``com.fasterxml.jackson.databind.Module``s are made available to the Jackson `ObjectMapper`.
1535+
1536+
Data binding mixins for the following domain types are registered by the common infrastructure.
1537+
----
1538+
org.springframework.data.geo.Distance
1539+
org.springframework.data.geo.Point
1540+
org.springframework.data.geo.Box
1541+
org.springframework.data.geo.Circle
1542+
org.springframework.data.geo.Polygon
1543+
----
1544+
1545+
[NOTE]
1546+
====
1547+
The individual module may provide additional `SpringDataJacksonModules`. +
1548+
Please refer to the store specific section for more details.
1549+
====
1550+
15271551
[[core.web.binding]]
15281552
==== Web Databinding Support
15291553

0 commit comments

Comments
 (0)