我正在使用带有Spring-data-Neo4j 3.0.0的Neo4j 2.0.1,并且我正在尝试使用新的标签特性。
我的实体是用@TypeAlias注释的,我的存储库扩展了GraphRepository和RelationshipOperationsRepository。
当我执行repository.save(entity)时,实体以旧的方式保存(使用__Type__属性),像match (entity:EntityLabel) return entity这样的查询不会返回任何内容。
我是不是遗漏了什么?
发布于 2014-04-19 21:59:59
我不得不升级到Spring-data-Neo4j 3.0.1
https://stackoverflow.com/questions/23170468
复制相似问题