资 源 简 介
What ?
EasyDao is a generic dao for jpa implementation for persistence unit. Enjoy
How to use
follow an example using easyjpadao:
```
import java.util.List;
import sislocar.beans.Cidade;
import com.easyjpadao.GenericDao;
public class main {
public static void main(String[] args) {
//create an object that will make CRUD methods using a name of the persistence unit
GenericDao genericdao = new GenericDao("WebSisLoCarPU",null);
Cidade cidade = new Cidade();
//inserting
cidade.setIdCidade(160);
cidade.setNome("New York");
cidade.setUf("NY");
//the method to insert
genericdao.insert(cidade);
//updating
cidade.setIdCidade(2);
cidade.setNome("Sao Paulo");
cidade.setUf("SP");
//the method to update
genericdao.update(cidade);
//deleting by id (this example will delete the New York city
genericdao.deleteById(cidade,