Busquedas

Si deseamos filtrar por clasificacion

@Getter
@Setter
public class Cliente {

    @Id
    private Integer idcliente;
    private String cedula;

    @Referenced(documment = "Clasificacioncliente", repository = "com.avbravo.storeejb.repository.ClasificacionclienteRepository",
            field = "idclasificacioncliente", javatype = "Integer", lazy = false)
    private Clasificacioncliente clasificacioncliente;

   }

Si deseamos buscar con paginaciòn

Controller

Last updated

Was this helpful?