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

After I migrate to Play 2.1, there is an error thrown out in this line. I couldn't find any documentations that explain what happen.

Form<LoginData> loginDataForm = Form.form(LoginData.class).bindFromRequest();

Pre Play 2.1, the bean is like this

public static class LoginData {

        @Constraints.Required
        public String email;

        @Constraints.Required
        public String password;
}

In 2.1, the bean must have getter and setter.

public static class LoginData {
        @Constraints.Required
        public String email;

        @Constraints.Required
        public String password;

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
  }

If there is no getter and setter, an error was thrown out by play:

Caused by: org.springframework.beans.NotReadablePropertyException: Invalid property 'password' of bean class [controllers.WebLogin$LoginData]: Bean property 'password' is not readable or has an invalid getter method: Does the return type of the getter match the parameter type of the setter?
    at org.springframework.beans.BeanWrapperImpl.getPropertyValue(BeanWrapperImpl.java:729) ~[spring-beans-3.1.2.RELEASE.jar:3.1.2.RELEASE]
    at org.springframework.beans.BeanWrapperImpl.getPropertyValue(BeanWrapperImpl.java:721) ~[spring-beans-3.1.2.RELEASE.jar:3.1.2.RELEASE]
    at org.springframework.validation.AbstractPropertyBindingResult.getActualFieldValue(AbstractPropertyBindingResult.java:99) ~[spring-context-3.1.2.RELEASE.jar:3.1.2.RELEASE]
    at org.springframework.validation.AbstractBindingResult.rejectValue(AbstractBindingResult.java:105) ~[spring-context-3.1.2.RELEASE.jar:3.1.2.RELEASE]
    at play.data.Form.bind(Form.java:337) ~[play-java_2.10-2.1.0.jar:2.1.0]
    at play.data.Form.bindFromRequest(Form.java:215) ~[play-java_2.10-2.1.0.jar:2.1.0]
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.