Model.Finder<I, T> Deperecated Play! 2.4

2.3k views Asked by At

I am building an application using the latest version of Play!. When defining a Finder( as in Model.Finder) my IDE gives me a warning Finder is deprecated. I can't find any information in the documentation about Model.Finder being deprecated of any alternative to using it. Has anyone experienced a similar issue and know of an alternative?

3

There are 3 answers

0
Mon Calamari On BEST ANSWER

According to github Model.Finder is not deprecated, but one of its constructors:

/**
 * @deprecated
 */
public Finder(Class<I> idType, Class<T> type) {
  super(null, type);
}

Make sure you use correct constructor, pointed out by @biesior:

public static Finder<Long, Foo> find = new Finder<>(Foo.class);
0
biesior On

Use Model.Finder<T> like:

public static Finder<Long, Foo> find = new Finder<>(Foo.class);

instead of

public static Finder<Long, Foo> find = new Finder<>(Long.class, Foo.class);
0
Somnath Sarode On

Try This

 public static Finder<Long, Foo> find = new Finder<>(Foo.class);