-
Notifications
You must be signed in to change notification settings - Fork 38.6k
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.html
is misleading. That should rather be calledvalidation/data-binding.html
. -
validation/beans-beans.html#beans-beans
is definitely inadequate: too many beans 🫘. That should rather be calledvalidation/data-binding.html#data-binding-property-binding
. -
Although
validation/convert.html
might be better namedvalidation/conversion.html
, there is a connection to thecore.convert
package, so we can leave that one as-is. -
However, having both
validation/conversion.html
andvalidation/convert.html
does not make sense, especially with the former actual documenting error code resolution instead of type conversion. Thus,validation/conversion.html
should rather be calledvalidation/error-code-resolution.html
.