-
Notifications
You must be signed in to change notification settings - Fork 38.8k
Description
Overview
In the Validation chapter of the reference manual, we have some good URLs and some not-so-good URLs.
✅ https://docs.spring.io/spring-framework/reference/7.0/core/validation/validator.html --> Validator
❌ https://docs.spring.io/spring-framework/reference/7.0/core/validation/beans-beans.html --> Data Binding
❌ https://docs.spring.io/spring-framework/reference/7.0/core/validation/beans-beans.html#beans-binding --> Data Binding
❌ https://docs.spring.io/spring-framework/reference/7.0/core/validation/beans-beans.html#beans-beans --> Data Binding / Property Binding
❌ https://docs.spring.io/spring-framework/reference/7.0/core/validation/conversion.html --> Resolving Codes to Error Messages
☑️ https://docs.spring.io/spring-framework/reference/7.0/core/validation/convert.html --> Type Conversion
Deliverables
-
validation/beans-beans.htmlis misleading. That should rather be calledvalidation/data-binding.html. -
validation/beans-beans.html#beans-beansis definitely inadequate: too many beans 🫘. That should rather be calledvalidation/data-binding.html#data-binding-property-binding. -
Although
validation/convert.htmlmight be better namedvalidation/conversion.html, there is a connection to thecore.convertpackage, so we can leave that one as-is. -
However, having both
validation/conversion.htmlandvalidation/convert.htmldoes not make sense, especially with the former actual documenting error code resolution instead of type conversion. Thus,validation/conversion.htmlshould rather be calledvalidation/error-code-resolution.html.