This commit is contained in:
2024-05-23 21:47:40 +08:00
parent 5dcf26803b
commit 119844ca3e

View File

@@ -11,6 +11,7 @@ import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.collections4.MapUtils;
import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.reflect.FieldUtils;
import org.springframework.beans.factory.annotation.Autowired;
@@ -124,7 +125,7 @@ public class PojoProcessor {
return;
}
if (!seen.add(pojo)) {
if (!seen.add(ObjectUtils.identityToString(pojo))) {
return;
}