私は Java Playframework 2.1.1 を使用しており、多対多の関係 (学生とコースの間) を持つオブジェクトを保持するフォームを作成しようとしています。したがって、学生を作成するという私の見解では、複数選択要素を使用して複数のコースを選択しています。フォームを送信した後、学生は正しく挿入されますが、結合可能な「学生コース」は空のままです。
ここにいくつかのコードがあります:
Course.java
@Entity
public class Course extends Model {
...
@ManyToMany(mappedBy = "courses", cascade=CascadeType.ALL)
private List<Student> students;
public static List<Course> find() {
Query query = JPA.em().createQuery("SELECT e FROM course e");
return (List<Course>) query.getResultList();
}
...
}
学生.java
@Entity
public class Student extends Model {
...
@ManyToMany(cascade = CascadeType.ALL)
private List<Course> courses;
...
}
AdminController.java
public class Admin extends Controller {
final static Form<Student> studentForm = Form.form(Student.class);
@Transactional
public static Result newStudent(){
List<Student> students= Student.find();
return ok(createStudent.render(students,studentsForm));
}
@Transactional
public static Result submitStudent(){
Form<Student> filledForm = studentForm.bindFromRequest();
if(filledForm.hasErrors()) {
Logger.error("Submitted Form got errors");
return badRequest();
} else {
Student student= filledForm.get();
Student.save(student);
}
List<Student> students= Student.find();
return ok(createStudent.render(students,studentForm));
}
...
}
生徒を作成するフォーム:
@(students:List[Student], studentForm: Form[Student])
@import helper._
@main("Administration - Create Student"){
<h1>Create Student</h1>
<hr/>
}
<h2>New Student</h2>
@helper.form(action = routes.Admin.submitStudent) {
...
@helper.select(studentForm("courses"),
options(Course.options),
'multiple -> "multiple",
'_label -> "Course")
<input type="submit" class="btn btn-success">
}
}
どんな助けでも大歓迎です!