Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I created plugin in neo4j by next steps:

1) create *.class from *.java (copile with Eclipse)

2) put *.class into .../org/neo4j/server/plugins/

3) create *.jar (using jar)

4) put into *.jar/META-INF/services/ file "org.neo4j.server.plugins.ServerPlugin" with text "org.neo4j.server.plugins.TransportRouter".

5) put *.jar into .../neo4j/plugins/

6) restart server

But my plugin do not see in "extensions" ("curl localhost:7474/db/data/").

Why?

TIA, Eugeny.

share|improve this question
I write about create my plugin here: vinger4.blogspot.com/2012/09/create-neo4j-plugin.html – Eugeny Sep 19 '12 at 4:11

2 Answers

Eugeny can you list the content of the jar jar tf your-jar.jar and the source code of your class.

Do you depend on any other libraries?

please see the Neo4j manual for the needed steps.

share|improve this answer
META-INF/ META-INF/MANIFEST.MF org/ org/neo4j/ org/neo4j/examples/ org/neo4j/examples/server/ org/neo4j/examples/server/plugins/ org/neo4j/examples/server/plugins/MyClass.class services/ META-INF/services/ META-INF/services/org.neo4j.server.plugins.ServerPlugin – Eugeny Sep 6 '12 at 4:04
Yes, my class depend from GraphAlgoFactory. Where I must determine this? – Eugeny Sep 6 '12 at 4:09
I think your question was answered in the Neo4j Google Group. It was about the return type of your Plugin method. – Michael Hunger Sep 7 '12 at 19:59
up vote 0 down vote accepted

Problem was solved.

It's my error in initialization of my class:

public TransportRouter( EmbeddedReadOnlyGraphDatabase graphdb ) {

It was replaced by:

public TransportRouter() {
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.