我有一个简单的设置,遇到了一个令人费解的问题(至少对我而言):
我有三个相互关联的pojos:
@NodeEntity
public class Unit {
@GraphId Long nodeId;
@Indexed int type;
String description;
}
@NodeEntity
public class User {
@GraphId Long nodeId;
@RelatedTo(type="user", direction = Direction.INCOMING)
@Fetch private Iterable<Worker> worker;
@Fetch Unit currentUnit;
String name;
}
@NodeEntity
public class Worker {
@GraphId Long nodeId;
@Fetch User user;
@Fetch Unit unit;
String description;
}
所以你有一个User-Worker-Unit,带有&#34; currentunit&#34;在用户中标记允许直接跳转到当前单位&#34;。每个用户可以有多个工作人员,但只有一个工作人员被分配到一个单元(一个单元可以有多个工作人员)。
我想知道如何控制&#34; User.worker&#34;上的 @Fetch 注释。我实际上只是在需要时才想要这个,因为大多数时候我只和&#34;工人&#34;。
一起工作。我经历了http://static.springsource.org/spring-data/data-neo4j/docs/2.0.0.RELEASE/reference/html/,对我来说并不是很清楚:
从我看来,这个构造只要我想要一个工人就加载整个数据库,即使我大部分时间都不在乎用户。
我找到的唯一解决方法是使用存储库并在需要时手动加载实体。
-------更新-------
我一直在使用neo4j很长一段时间,并找到了上述问题的解决方案,不需要一直调用fetch(因此不会加载整个图形)。唯一的缺点:它是运行时方面:
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mapping.model.MappingException;
import org.springframework.data.neo4j.annotation.NodeEntity;
import org.springframework.data.neo4j.support.Neo4jTemplate;
import my.modelUtils.BaseObject;
@Aspect
public class Neo4jFetchAspect {
// thew neo4j template - make sure to fill it
@Autowired private Neo4jTemplate template;
@Around("modelGetter()")
public Object autoFetch(ProceedingJoinPoint pjp) throws Throwable {
Object o = pjp.proceed();
if(o != null) {
if(o.getClass().isAnnotationPresent(NodeEntity.class)) {
if(o instanceof BaseObject<?>) {
BaseObject<?> bo = (BaseObject<?>)o;
if(bo.getId() != null && !bo.isFetched()) {
return template.fetch(o);
}
return o;
}
try {
return template.fetch(o);
} catch(MappingException me) {
me.printStackTrace();
}
}
}
return o;
}
@Pointcut("execution(public my.model.package.*.get*())")
public void modelGetter() {}
}
您只需调整应该应用方面的类路径:my.model.package。 .get ())&#34;)
我将方面应用于我的模型类的ALL get方法。这需要一些先决条件:
所有模型类必须实现BaseObject接口,该接口提供:
public interface BaseObject { public boolean isFetched(); }
这可以防止双重抓取。我只检查一个必需的子类或属性(即名称或除nodeId之外的其他内容),以查看它是否实际被提取。 Neo4j将创建一个对象,但只填充nodeId并保持其他所有内容不变(所以其他一切都是NULL)。
即
@NodeEntity
public class User implements BaseObject{
@GraphId
private Long nodeId;
String username = null;
@Override
public boolean isFetched() {
return username != null;
}
}
如果有人在没有这种奇怪的解决方法的情况下找到了这样做的方法,请添加你的解决方案:)因为这个有效,但我会喜欢没有aspectj的人。
要求进行自定义字段检查的基础对象设计
一个优化是创建一个基类而不是一个实际使用布尔字段的接口(布尔加载)并检查它(所以你不必担心手动检查)
public abstract class BaseObject {
private Boolean loaded;
public boolean isFetched() {
return loaded != null;
}
/**
* getLoaded will always return true (is read when saving the object)
*/
public Boolean getLoaded() {
return true;
}
/**
* setLoaded is called when loading from neo4j
*/
public void setLoaded(Boolean val) {
this.loaded = val;
}
}
这是有效的,因为在保存对象&#34; true&#34;返回加载。当方面查看它使用的对象isFetched()时 - 当尚未检索到对象时将返回null。检索到对象后,将调用setLoaded并将加载的变量设置为true。
如何防止jackson触发延迟加载?
(作为对评论中问题的回答 - 注意我没有尝试过,因为我没有这个问题。)
使用jackson我建议使用自定义序列化程序(参见http://www.baeldung.com/jackson-custom-serialization)。这允许您在获取值之前检查实体。您只需检查它是否已被提取,并继续使用整个序列化或只使用id:
public class ItemSerializer extends JsonSerializer<BaseObject> {
@Override
public void serialize(BaseObject value, JsonGenerator jgen, SerializerProvider provider)
throws IOException, JsonProcessingException {
// serialize the whole object
if(value.isFetched()) {
super.serialize(value, jgen, provider);
return;
}
// only serialize the id
jgen.writeStartObject();
jgen.writeNumberField("id", value.nodeId);
jgen.writeEndObject();
}
}
弹簧配置
这是我使用的示例Spring配置 - 您需要调整项目的包:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:neo4j="http://www.springframework.org/schema/data/neo4j"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/data/neo4j http://www.springframework.org/schema/data/neo4j/spring-neo4j-2.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<context:annotation-config/>
<context:spring-configured/>
<neo4j:repositories base-package="my.dao"/> <!-- repositories = dao -->
<context:component-scan base-package="my.controller">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/> <!-- that would be our services -->
</context:component-scan>
<tx:annotation-driven mode="aspectj" transaction-manager="neo4jTransactionManager"/>
<bean class="corinis.util.aspects.Neo4jFetchAspect" factory-method="aspectOf"/>
</beans>
AOP配置
这是用于此工作的/META-INF/aop.xml:
<!DOCTYPE aspectj PUBLIC
"-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd">
<aspectj>
<weaver>
<!-- only weave classes in our application-specific packages -->
<include within="my.model.*" />
</weaver>
<aspects>
<!-- weave in just this aspect -->
<aspect name="my.util.aspects.Neo4jFetchAspect" />
</aspects>
</aspectj>
答案 0 :(得分:12)
自己找到所有问题的答案:
@Iterable:是的,iterable可以用于readonly
@load on access:默认情况下,没有加载任何内容。和自动延迟加载不可用(至少我可以收集)
其余的: 当我需要关系时,我要么必须使用@Fetch或使用neo4jtemplate.fetch方法:
@NodeEntity
public class User {
@GraphId Long nodeId;
@RelatedTo(type="user", direction = Direction.INCOMING)
private Iterable<Worker> worker;
@Fetch Unit currentUnit;
String name;
}
class GetService {
@Autowired private Neo4jTemplate template;
public void doSomethingFunction() {
User u = ....;
// worker is not avaiable here
template.fetch(u.worker);
// do something with the worker
}
}
答案 1 :(得分:3)
答案 2 :(得分:0)
我喜欢方面方法来解决当前spring-data方法处理延迟加载的限制。
@niko - 我已将您的代码示例放在一个基本的maven项目中,并尝试使该解决方案无法取得成功:
https://github.com/samuel-kerrien/neo4j-aspect-auto-fetching
由于某些原因,Aspect正在初始化,但建议似乎没有被执行。要重现该问题,只需运行以下JUnit测试:
playground.neo4j.domain.UserTest