Hi,
Roo doesn't seem to provide dynamic finders on embeddable objects. Will explain with a hypothetical example

@RooEntity
class Person {

@Embedded
Address address;
}
And now Address
@Embeddable
class Address {

String streetName;
String city;

}
If I am to find Person's whose address's city streetName field is null, Roo's "finder list" on Person is not giving me an appropriate finder.

Regards
Sathya