Re: [Neo4j] persist() undefined

2011-11-11 Thread Gr3y
Hey 

You are helping me out, no need to be sorry about anything. :) 

I imported the project via ImportMaven project 

1) This should be on. There is a little AJ in the project icon (slightly
concealed behind the M icon though). 
2) Both spring-aspects and spring-data-neo4j-aspects are listed. 
3) I often clean, and it unfortunately didn't help. :\ 

I tried the SNAPSHOT, and it didnt work either. 

Does the aspects need xml configuration or something, cause I have none of
that. 
My entities look like this: 
... 
@NodeEntity 
public class Visitor implements IVisitor { 
... 

This should be enough to make SDN magic work? 

Thanks for helping Michael!

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/persist-undefined-tp3497682p3499529.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] persist() undefined

2011-11-11 Thread Gr3y
Hey 

You are helping me out, no need to be sorry about anything. :) 

I imported the project via ImportMaven project 

1) This should be on. There is a little AJ in the project icon (slightly
concealed behind the M icon though). 
2) Both spring-aspects and spring-data-neo4j-aspects are listed. 
3) I often clean, and it unfortunately didn't help. :\ 

I tried the SNAPSHOT, and it didnt work either. 

Does the aspects need xml configuration or something, cause I have none of
that. 
My entities look like this: 
... 
@NodeEntity 
public class Visitor implements IVisitor { 
... 

This should be enough to make SDN magic work? 

Thanks for helping Michael!

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/persist-undefined-tp3497682p3499530.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] persist() undefined

2011-11-11 Thread Gr3y
http://neo4j-community-discussions.438527.n3.nabble.com/file/n3499577/pom.xml
pom.xml (master) 
http://neo4j-community-discussions.438527.n3.nabble.com/file/n3499577/pom.xml
pom.xml 

Here are the pom files to begin with. Our project is layered, so I included
the master pom file.

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/persist-undefined-tp3497682p3499577.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] persist() undefined

2011-11-11 Thread Gr3y
Master file
http://neo4j-community-discussions.438527.n3.nabble.com/file/n3499579/pom.xml
pom.xml 

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/persist-undefined-tp3497682p3499579.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] persist() undefined

2011-11-11 Thread Gr3y
http://neo4j-community-discussions.438527.n3.nabble.com/file/n3499596/pom.xml
pom.xml 

Here is the master file.
I reuploaded it.

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/persist-undefined-tp3497682p3499596.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] persist() undefined

2011-11-11 Thread Gr3y
Third times the charm.

http://neo4j-community-discussions.438527.n3.nabble.com/file/n3499605/pom2.xml
pom2.xml 
Master file. Renamed pom2.xml.

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/persist-undefined-tp3497682p3499605.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] persist() undefined

2011-11-11 Thread Gr3y
The hello world aspects project works.
There are aspects markers all over the place.

I wonder why I'm not getting them.

I tried various thing.
Added a dependency to spring-data-neo4j-aspects - didnt help.
Added Spring nature to the project - didnt help.
Aspect Capability is already on, but I tried toggling it.

:/

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/persist-undefined-tp3497682p3500784.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


[Neo4j] persist() undefined

2011-11-10 Thread Gr3y
Hello

I'm having trouble getting STS to acknowledge that the method persist() on
an nodeentity is valid.
I'm using STS 2.8 which to my knowledge has the newest AJDT plugin.

I don't know much about Neo4j yet, and I'm also a beginner with Spring, so
maybe I forgot something.

My project is controlled by maven, and is setup like so:

Dependency:
dependency
groupIdorg.springframework.data/groupId
artifactIdspring-data-neo4j/artifactId
version2.0.0.M1/version
/dependency

Plugin:
plugin
groupIdorg.codehaus.mojo/groupId
artifactIdaspectj-maven-plugin/artifactId
version1.4/version
configuration
outxmltrue/outxml
aspectLibraries
aspectLibrary
groupIdorg.springframework/groupId
artifactIdspring-aspects/artifactId
/aspectLibrary
aspectLibrary
groupIdorg.springframework.data/groupId
artifactIdspring-data-neo4j/artifactId
/aspectLibrary
/aspectLibraries
source1.6/source
target1.6/target
/configuration
executions
execution
goals
goalcompile/goal
goaltest-compile/goal
/goals
/execution
/executions
dependencies
dependency
groupIdorg.aspectj/groupId
artifactIdaspectjrt/artifactId
version1.6.12.M1/version
/dependency
dependency
groupIdorg.aspectj/groupId
artifactIdaspectjtools/artifactId
version1.6.12.M1/version
/dependency
/dependencies
/plugin

My entities are of course flagged with @NodeEntity

Can anyone help me out?

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/persist-undefined-tp3497682p3497682.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user