Hi Phil,
Actually, the finder add-on does not present the findProduct(id) and findAllProducts() methods as both are already available by default courtesy of the entity add-on. If you take a look into Product_Roo_Entity.aj you will find these methods:
Code:
public static List<Product> Product.findAllProducts() {
[...]
}
public static Product Product.findProduct(Long id) {
[...]
}
Can you elaborate which other suggestions for finder methods you are missing. The dynamic finder add-on is still work-in-progress so I am sure we will extend and improve its functionality over time.
Regards,
Stefan