sql >> Database >  >> RDS >> Mysql

Eenvoudige CRUD-tutorial over Play Framework en MySQL met Ebean?

Hoera!!!

Lijstactie

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

findAll-methode in productmodel

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

Ten slotte moet ik evolutie in /conf/application.conf inschakelen door de volgende regel te verwijderen

# evolutionplugin=disabled

Voeg @Entity toe net voor publieke klasse Product breidt Model uit{

Definitieve code:

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();
    }
}

Ik hoop dat dit iedereen zal helpen die ook nieuw is bij het spelen van Java




  1. UTF-8-tekens detecteren in een Latin1-gecodeerde kolom - MySQL

  2. SQL SELECT met m:n-relatie

  3. Zeer eenvoudige gebruikersinvoer in django

  4. Hoe HOUR() werkt in MariaDB