Skip to content

Commit 242acda

Browse files
committed
Javadoc fixes
Issue: SPR-13765
1 parent 66c4452 commit 242acda

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

spring-web/src/main/java/org/springframework/http/converter/json/Jackson2ObjectMapperFactoryBean.java

+9-7
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@
9494
* <bean class="org.springframework.http.converter.json.Jackson2ObjectMapperFactoryBean">
9595
* <property name="featuresToEnable">
9696
* <array>
97-
* <util:constant static-field="com.fasterxml.jackson.databind.SerializationFeature$WRAP_ROOT_VALUE"/>
98-
* <util:constant static-field="com.fasterxml.jackson.databind.SerializationFeature$CLOSE_CLOSEABLE"/>
97+
* <util:constant static-field="com.fasterxml.jackson.databind.SerializationFeature.WRAP_ROOT_VALUE"/>
98+
* <util:constant static-field="com.fasterxml.jackson.databind.SerializationFeature.CLOSE_CLOSEABLE"/>
9999
* </array>
100100
* </property>
101101
* <property name="featuresToDisable">
102102
* <array>
103-
* <util:constant static-field="com.fasterxml.jackson.databind.MapperFeature$USE_ANNOTATIONS"/>
103+
* <util:constant static-field="com.fasterxml.jackson.databind.MapperFeature.USE_ANNOTATIONS"/>
104104
* </array>
105105
* </property>
106106
* </bean>
@@ -370,8 +370,9 @@ public void setBeanClassLoader(ClassLoader beanClassLoader) {
370370
}
371371

372372
/**
373-
* Customize the construction of Jackson handlers ({@link JsonSerializer}, {@link JsonDeserializer},
374-
* {@link KeyDeserializer}, {@code TypeResolverBuilder} and {@code TypeIdResolver}).
373+
* Customize the construction of Jackson handlers
374+
* ({@link JsonSerializer}, {@link JsonDeserializer}, {@link KeyDeserializer},
375+
* {@code TypeResolverBuilder} and {@code TypeIdResolver}).
375376
* @since 4.1.3
376377
* @see Jackson2ObjectMapperFactoryBean#setApplicationContext(ApplicationContext)
377378
*/
@@ -380,8 +381,9 @@ public void setHandlerInstantiator(HandlerInstantiator handlerInstantiator) {
380381
}
381382

382383
/**
383-
* Set the builder {@link ApplicationContext} in order to autowire Jackson handlers ({@link JsonSerializer},
384-
* {@link JsonDeserializer}, {@link KeyDeserializer}, {@code TypeResolverBuilder} and {@code TypeIdResolver}).
384+
* Set the builder {@link ApplicationContext} in order to autowire Jackson handlers
385+
* ({@link JsonSerializer}, {@link JsonDeserializer}, {@link KeyDeserializer},
386+
* {@code TypeResolverBuilder} and {@code TypeIdResolver}).
385387
* @since 4.1.3
386388
* @see Jackson2ObjectMapperBuilder#applicationContext(ApplicationContext)
387389
* @see SpringHandlerInstantiator

0 commit comments

Comments
 (0)