When creating a new record, the unique validation works good.
When updating a record, it checks only with the current record, and it should be the opposite: to check all records except the current record.
I found the problem in UniqueCheck.java at line 83, To resolve this, change this line to:
When creating a new record, the unique validation works good. When updating a record, it checks only with the current record, and it should be the opposite: to check all records except the current record.
I found the problem in UniqueCheck.java at line 83, To resolve this, change this line to:
q.field(keyProperty).notEqual(keyValue);
Regards, Mardo Del Cid.