diff --git a/spring-framework-reference/src/validation.xml b/spring-framework-reference/src/validation.xml index 8ccf10bb6c..fa41125fbe 100644 --- a/spring-framework-reference/src/validation.xml +++ b/spring-framework-reference/src/validation.xml @@ -1510,7 +1510,7 @@ public class PersonDtoPersonMapper implements Mapper<PersonDto, Person> {
- General-purpose Object Mapper Implementation + General Purpose Object Mapper Implementation A general purpose object-to-object mapping system exists in the org.springframework.mapping.support package. Built on the Spring Expression Language (SpEL), this system is capable of mapping between a variety of object types, including JavaBeans, Arrays, Collections, and Maps. @@ -1686,7 +1686,7 @@ builder.addConditionalMapping("countryCode", "international == 'true'");]]>
Forcing Explicit Mappings - You can require that all mapping rules be defined explicitly by disabling the "auto mapping" feature: + You can force that all mapping rules be explicitly defined by disabling the "auto mapping" feature: @@ -1720,7 +1720,7 @@ builder.setExcludedFields("name");]]>
Registering Custom Type Converters - You may also register custom Converters to convert values between mapped field of different types: + You may also register custom Converters to convert values between mapped fields of different types: () {