-
Notifications
You must be signed in to change notification settings - Fork 38.8k
Description
Steve opened SPR-8391 and commented
A few minor issues discovered in "Chapter 15 - WebMVC" the Spring Reference Documentation for release 3.1.0.M1 downloaded from:
http://static.springsource.org/spring/docs/3.1.0.M1/spring-framework-reference/pdf/spring-framework-reference.pdf
-
p421 (typo)
The line:
"The requesting processing workflow in Spring Web MVC"
should be:
"The request processing workflow in Spring Web MVC" -
p427 (typo)
Last line on the page:
"functionality that requires creating a proxy proxy for the controller object"
should be:
"functionality that requires creating a proxy for the controller object" -
p429 (typo)
Third code example, line 3:
Owner owner = ownerService.findOwner(ownderId);
should be:
Owner owner = ownerService.findOwner(ownerId); -
p457 (content)
This isn't just a typo. The documentation doesn't make it clear that empty arrays, unlike empty lists, can and will have a model attribute generated for them.
The line:
"An x.y.User[] array with one or more x.y.User elements added will have the name userList generated."
should be:
"An x.y.User[] array with zero or more x.y.User elements added will have the name userList generated."
Likewise the line:
"An x.y.Foo[] array with one or more ..."
should be:
"An x.y.Foo[] array with zero or more ..."
Affects: 3.1 M1