我是 Neo4J 的新手,我有,可能是一个简单的问题。
我的应用程序中有 NodeEntity,属性(名称)用 @Indexed(unique = true) 注释以实现唯一性,就像我在 JPA 中使用 @Column(unique = true) 所做的那样。
我的问题是,当我坚持一个名称已经存在于我的图表中的实体时,它无论如何都可以正常工作。但我预计这里会出现某种异常......?!这是我的基本代码的概述:
@NodeEntity
public abstract class BaseEntity implements Identifiable
{
@GraphId
private Long entityId;
...
}
public class Role extends BaseEntity
{
@Indexed(unique = true)
private String name;
...
}
public interface RoleRepository extends GraphRepository<Role>
{
Role findByName(String name);
}
@Service
public class RoleServiceImpl extends BaseEntityServiceImpl<Role> implements
{
private RoleRepository repository;
@Override
@Transactional
public T save(final T entity) {
return getRepository().save(entity);
}
}
这是我的测试:
@Test
public void testNameUniqueIndex() {
final List<Role> roles = Lists.newLinkedList(service.findAll());
final String existingName = roles.get(0).getName();
Role newRole = new Role.Builder(existingName).build();
newRole = service.save(newRole);
}
这就是我预计会出错的地方!如何在不自己检查的情况下确保属性的唯一性?
PS:我正在使用 neo4j 1.8.M07、spring-data-neo4j 2.1.0.BUILD-SNAPSHOT 和 Spring 3.1.2.RELEASE。