#199 - Added missing messages and fixed a JavaDoc error in web example.

This commit is contained in:
Lucas Pleß
2016-07-20 13:41:48 +02:00
committed by Oliver Gierke
parent 9ee13be9b5
commit bee8a81118
2 changed files with 7 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ class UserController {
* Registers a new {@link User} for the data provided by the given {@link UserForm}. Note, how an interface is used to
* bind request parameters.
*
* @param form the request data bound to the {@link UserForm} instance.
* @param userForm the request data bound to the {@link UserForm} instance.
* @param binding the result of the binding operation.
* @param model the Spring MVC {@link Model}.
* @return

View File

@@ -1,2 +1,7 @@
user.username.empty = Username is required!
user.username.exists = Username already exists!
user.password.no-match = The given passwords don't match!
user.username.invalidFormat = Invalid Username format!
user.password.empty = Password is required!
user.password.no-match = The given passwords don't match!
user.repeatedPassword.empty = Repeated password is required!