The basic structure of the code is as above though.

Here is the code that is not working

@Service
@Transactional
public class Neo4jService
{
       @Autowired
       private Neo4jTemplate template;

       public User addUser(User user)
       {
              template.save(user);             //No Error Till here
              return user;                     //After This step Error
occurs
       }
}


Can it be because improper neo4j version and Spring data version

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to