これらは私のコントローラーとコマンドです。今、私はすべてのフィールド名を取得したいと思います。ドメイン クラスのフィールド名を取得するためのリンクは次のとおり です。ドメイン クラス フィールド名を取得します。しかし、以下で説明しているように、コマンドのフィールド名を取得する必要があります
class SocialRecruitingController
{
def getFieldNames()
{
ConnectionsAdvSearchCommand.fields.each
{it->
log.info(it?.name+",");
// Expecting keyword,fname,lname,title,company,school,location,country,postalCode
}
}
class ConnectionsAdvSearchCommand
{
String keyword
String fname;
String lname;
String title;
String company;
String school;
String location;
String country;
String postalCode;
}
}