gpt4 book ai didi

java - 使用反射迭代对象的集合属性

转载 作者:太空宇宙 更新时间:2023-11-04 13:30:10 24 4
gpt4 key购买 nike

我正在尝试实现 this我的代码中有关 spring data mongodb 中级联保存的解决方案。它适用于像这样的普通类(class)。

public class Test{

@Id
private String id;

@DBRef
@CascadeSave
private Contact contact;
}

但是我有这样的东西。

public class Test{

@Id
private String id;

@DBRef
@CascadeSave
private Set<Contact> contacts = new HashSet<>();
}

我想更改 link 中的 listener 中的代码我致力于与 Collection 相关的工作。我尝试了几件事但没有成功。除此之外,如果有其他方法完成此任务,我们将不胜感激,即使这是一个单独的问题。

下面给出了我的监听器代码,与示例链接没有太大区别。

public class CascadingMongoEventListener extends AbstractMongoEventListener {

private static final Logger logger = LoggerFactory.getLogger(CascadingMongoEventListener.class);

@Autowired
private MongoOperations mongoOperations;

@Override
public void onBeforeConvert(final Object source) {
ReflectionUtils.doWithFields(source.getClass(), new ReflectionUtils.FieldCallback() {

public void doWith(Field field) throws IllegalArgumentException, IllegalAccessException {
ReflectionUtils.makeAccessible(field);
try {
if (field.isAnnotationPresent(DBRef.class) && field.isAnnotationPresent(CascadeSave.class)) {
final Object fieldValue = field.get(source);
if (fieldValue != null) {

if (Collection.class.isAssignableFrom(field.getType())) {
@SuppressWarnings("unchecked")
Collection models = (Collection) fieldValue;
for (Object model : models) {
mongoOperations.save(model);
}
} else {
mongoOperations.save(fieldValue);
}
}
}
} catch (Exception e) {
logger.error(e.getMessage());
e.printStackTrace();
}
}
});
}

private static class DbRefFieldCallback implements ReflectionUtils.FieldCallback {
private boolean idFound;

public void doWith(Field field) throws IllegalArgumentException, IllegalAccessException {
ReflectionUtils.makeAccessible(field);
if (field.isAnnotationPresent(Id.class)) {
idFound = true;
}
}

public boolean isIdFound() {
return idFound;
}
}
}

最佳答案

这是对我有用的解决方案,我将不胜感激任何改进建议。

public class CascadingMongoEventListener extends AbstractMongoEventListener {

private static final Logger logger = LoggerFactory.getLogger(CascadingMongoEventListener.class);
@Autowired
private MongoOperations mongoOperations;

@Override
public void onBeforeConvert(final Object source) {
ReflectionUtils.doWithFields(source.getClass(), new ReflectionUtils.FieldCallback() {

public void doWith(Field field) throws IllegalArgumentException, IllegalAccessException {
ReflectionUtils.makeAccessible(field);

if (field != null) {
Object fieldValue = field.get(source);
if (field.isAnnotationPresent(DBRef.class) && field.isAnnotationPresent(CascadeSave.class)) {
if (Collection.class.isAssignableFrom(fieldValue.getClass())) {
Collection<Object> collection = (Collection<Object>) fieldValue;
for (Object item : collection) {
if (mongoOperations.collectionExists(item.getClass())) {
mongoOperations.save(item);
logger.debug("Set of {}s saved.", item.getClass().getSimpleName());
}
}
} else {
if (mongoOperations.collectionExists(fieldValue.getClass())) {
mongoOperations.save(fieldValue);
logger.debug("{} saved.", fieldValue.getClass().getSimpleName());
}
}
}
}
}
});
}
}

关于java - 使用反射迭代对象的集合属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32280540/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com