OK, So I am having some issues with getting data from a form to bind to a model class I have.
I have a class Question that basically looks like this:
@Entity
public class Question extends Model {
@Id @Required public int id;
public String title;
public String body;
...methods...
}
So I want to use this as a template for a form for a user to create a question, so I create a static instance (as they do in the samples)
final static Form<Question> question_form = form(Question.class);
So far so good, everything compiles. The problem comes when I actually submit the form:
Form<Question> filled_form = new Form<Question>(Question.class).bindFromRequest();
Here I get the error:
[UnexpectedTypeException: No validator could be found for type: java.lang.Integer]
My thinking on how to proceed is to use a design pattern that goes like this:
1.) Create template classes specifically for Forms, that don't include things like foreign keys, IDs, and information that isn't in a format designed for the user. (i.e. if the Question has a foreign key for Topic, the QuestionForm class would have a String topic field.
2.) Create a methods in the Question model that goes something like getFormForQuestion(Question) and getQuestionForForm(Form<Question>) and then use these methods to do CRUD functions.
So basically the User and controller interact using Forms, and then the Model knows how to take these forms and turn them into entries in the database.
Is this a reasonable way to proceed? Or is there a better way of doing this?
UPDATE:
Seems to be fixed when using @GeneratedValue annotation rather than the @Required annotation, but I am still curious regarding my proposed Form Design pattern.
Also just removing @Required appears to fix the problems. Still looking for comments on the mentioned design pattern!
idbecause that is inherited from theModelsuperclass. – Dan W Mar 29 '12 at 14:28@GeneratedValueannotation, do you think that the design pattern I mentioned there is a good design pattern? – wbarksdale Mar 29 '12 at 15:36