Play frameworkのDB操作を楽にするEBeanの基礎知識:Javaの常識を変えるPlay framework入門(2)(3/3 ページ) package controllers; import java.util.List; import models.Child; import models.Parent; import play.db.ebean.Model.Finder; import play.mvc.Controller; import play.mvc.Result; public class Application extends Controller { public static Result index() { // 親1の作成 Parent parent1 = new Parent(); parent1.name = "渋谷太郎"; // 子1の追加 Ch
