Oleksandr
Oleksandr

Reputation: 435

Roo - add custom finder

I used Roo to create a project that uses existing database. Im able to create dynamic finders, but I want to implement custom finder that will receive 4 parameters and use some of them to create Like condition and others for equals condition.

What is the best way to do this with Roo.

Upvotes: 4

Views: 5799

Answers (2)

Björn
Björn

Reputation: 186

You'll probably have to copy the entityManager()-Getter as in:

new DomainClass().entityManager;

Upvotes: 0

Ben Alex
Ben Alex

Reputation: 1529

The recommended pattern is to edit the .java source file for your entity and define the new finder there. You might like to create a dynamic finder and then copy the style from the corresponding entityname_Roo_Finder.aj file. Please note manually-created finders do not appear in the automatically-created web scaffold (whereas dynamic finders will).

Upvotes: 9

Related Questions