Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The todolist example from the 300-page PDf documentation in 2.0 RC1 worked fine for me. Then I decided to add this email validation to the Task model:

@Required @Email
public String label;

The newTask action is still:

public static Result newTask() {
    Form<Task> filledForm = taskForm.bindFromRequest();

    if (filledForm.hasErrors()) {
        return badRequest(
            views.html.index.render(Task.all(), filledForm) 
        );
    } else {
        Task.create(filledForm.get());
        return redirect(routes.Application.tasks());
    }
}

When a todo is formatted as an email, the item is saved as expected.

But, I expected that the check by filledForm.hasErrors() would catch todos not formatted as email address, but instead, the application throws:

! @69d929n08 - Internal server error, for request [POST /tasks] ->

play.core.ActionInvoker$$anonfun$receive$1$$anon$1: Execution exception [[ValidationException: validation failed for: models.Task]]
    at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:65) [play_2.9.1.jar:2.0-RC1]
...

How can I validate using the @Email annotation and not get an exception?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.