sql >> Database teknologi >  >> RDS >> Mysql

Enkel CRUD-tutorial om Play Framework og MySQL ved hjælp af Ebean?

Hurra!!!

Liste handling

public static Result list(){
    List<Product> products = Product.findAll();
    return ok(play.libs.Json.toJson(products));
}

findAll-metoden i produktmodel

public static  List<Product> findAll(){
    return  Product.find.orderBy("id").findList();  
}

Til sidst er jeg nødt til at aktivere evolution i /conf/application.conf ved at fjerne kommentering af følgende linje

# evolutionplugin=disabled

Tilføj @Entity lige før offentlig klasse Produkt udvider Model{

Endelig kode:

package models;

import java.util.List;

import javax.persistence.Entity;

import play.db.*;
import play.db.ebean.Model;

import play.api.db.DB;

import com.avaje.ebean.Ebean;
import com.avaje.ebean.Query;


@Entity

public class Product extends Model{

    public int id;
    public String name;
    public String description;

    public static Model.Finder<String, Product> find = new Model.Finder<String, Product>(String.class, Product.class);

    public Product(){

    }

    public Product(int id, String name, String description){
        this.id = id;
        this.name = name;
        this.description = description;
    }

    public static  List<Product> findAll(){
        return  Product.find.orderBy("id").findList();
    }
}

Jeg håber, at dette vil hjælpe alle, der også er nye til Play Java




  1. MySQL tabel med TEKST kolonne

  2. Django sæt Storage Engine &Default Charset

  3. PHP/MySQLi:SET lc_time_names og DATE_FORMAT() i en mysqli-forespørgsel?

  4. cron-job eller PHP-planlægger