Quantcast
Channel: Spring Community Forums - NoSQL
Viewing all articles
Browse latest Browse all 128

Neo4J - Problem persisting a object with multiple fields anotated with @Indexed(true)

$
0
0
Hi,

I have a @NodeEntity Class with multiple fields annotated with "@Indexed(unique = true)" (see below). I'd like these fields to be unique.

When I try to persist the Object with GraphRepository, I get the following exception:
Code:

Exception in thread "main" org.springframework.data.mapping.model.MappingException: Duplicate unique property userId, username has already been defined. Only one unique property is allowed per type
if I have single field with this annotation there is no exceptions, (only for multiple fields).
What is causing this ? How do i make these fields unique?

Code:

      private int userId;
        @Indexed(unique = true) private String name;
        @Indexed(unique = true) private String username;
        @Indexed(unique = true) private String emailAddress;


Viewing all articles
Browse latest Browse all 128

Trending Articles