When I have added this following code to my project
Form filledForm2 = userSignupForm.bindFromRequest();
It has stopped workin
Had the same issue...
To remove this error, you should define your variables as public.
class User{ public String username; public String password; }