In my Spring Data Neo4j project, I wanted to move to Advance Mapping
<http://docs.spring.io/spring-data/data-neo4j/docs/current/reference/htmlsingle/#reference_aspectj>
from
simple mapping and thus made code changes according to the spring docs.
After that I compiled my project using Maven with the aspectj-maven-plugin
configured.
After that I decompiled the java class of one of my @NodeEntity.
@NodeEntity
@TypeAlias("User")
public class User extends AbstractEntity {
...
}
I was expecting that some extra code would be weaved in this entity
something like this
implements NodeBacked
but found nothing.
Also there were no issues reported by my Eclipse IDE but according to the
spring docs you have to configure AJDT plugin to remove those errors.
It seems like no aspectj weaving had happened.
*Q1.* Am I missing something?
*Q2.* How to verify that the advance mapping has been configured properly?
Stackoverflow link of the question
<http://stackoverflow.com/questions/25119992/spring-data-neo4j-advance-mapping>
--
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.