@@ -529,7 +529,7 @@ public Jackson2ObjectMapperBuilder featuresToDisable(Object... featuresToDisable
529
529
530
530
/**
531
531
* Specify one or more modules to be registered with the {@link ObjectMapper}.
532
- * Multiple invocations are not additive, the last one defines the modules to
532
+ * <p> Multiple invocations are not additive, the last one defines the modules to
533
533
* register.
534
534
* <p>Note: If this is set, no finding of modules is going to happen - not by
535
535
* Jackson, and not by Spring either (see {@link #findModulesViaServiceLoader}).
@@ -546,7 +546,7 @@ public Jackson2ObjectMapperBuilder modules(Module... modules) {
546
546
547
547
/**
548
548
* Set a complete list of modules to be registered with the {@link ObjectMapper}.
549
- * Multiple invocations are not additive, the last one defines the modules to
549
+ * <p> Multiple invocations are not additive, the last one defines the modules to
550
550
* register.
551
551
* <p>Note: If this is set, no finding of modules is going to happen - not by
552
552
* Jackson, and not by Spring either (see {@link #findModulesViaServiceLoader}).
@@ -565,14 +565,15 @@ public Jackson2ObjectMapperBuilder modules(List<Module> modules) {
565
565
566
566
/**
567
567
* Specify one or more modules to be registered with the {@link ObjectMapper}.
568
- * Multiple invocations are not additive, the last one defines the modules
568
+ * <p> Multiple invocations are not additive, the last one defines the modules
569
569
* to register.
570
570
* <p>Modules specified here will be registered after
571
571
* Spring's autodetection of JSR-310 and Joda-Time, or Jackson's
572
572
* finding of modules (see {@link #findModulesViaServiceLoader}),
573
573
* allowing to eventually override their configuration.
574
- * <p>Specify either this or {@link #modules}, not both.
574
+ * <p>Specify either this or {@link #modules(Module...) }, not both.
575
575
* @since 4.1.5
576
+ * @see #modulesToInstall(Class...)
576
577
* @see com.fasterxml.jackson.databind.Module
577
578
*/
578
579
public Jackson2ObjectMapperBuilder modulesToInstall (Module ... modules ) {
@@ -583,13 +584,14 @@ public Jackson2ObjectMapperBuilder modulesToInstall(Module... modules) {
583
584
584
585
/**
585
586
* Specify one or more modules by class to be registered with
586
- * the {@link ObjectMapper}. Multiple invocations are not additive,
587
- * the last one defines the modules to register.
587
+ * the {@link ObjectMapper}.
588
+ * <p>Multiple invocations are not additive, the last one defines the modules
589
+ * to register.
588
590
* <p>Modules specified here will be registered after
589
591
* Spring's autodetection of JSR-310 and Joda-Time, or Jackson's
590
592
* finding of modules (see {@link #findModulesViaServiceLoader}),
591
593
* allowing to eventually override their configuration.
592
- * <p>Specify either this or {@link #modules}, not both.
594
+ * <p>Specify either this or {@link #modules(Module...) }, not both.
593
595
* @see #modulesToInstall(Module...)
594
596
* @see com.fasterxml.jackson.databind.Module
595
597
*/
0 commit comments