Yes i think so (this is the compilation error page from Play!). I just have a minimal code atm, and the definition of my find field is just like many tutorials :
public static Finder<String, Personne> find = new Finder<String, Personne>(String.class,Personne.class);
I had the original sample public static Finder<Long, Personne> find = new Finder<Long, Personne>(Long.class,Personne.class); None of them are working with the where clause with my "Personne" model. "Personne" has the following attributes :
@Id
public int id;
public String nom;
public String prenom;
public String adresse;
Sorry again eventually for the lack of precision, i am not used to post on support forums :)