问题
I have some specific requirements for my project and I decided to implement unmanaged Neo4j extension.
I found this information in Neo4j docs:
- Unmanaged extensions
- Testing your extension
This looks like a good start. But I can't get things working for me.
Is there some more complete working example/template, that can be used as reference?
回答1:
"Handmade" solution
TL;DR; - https://github.com/FylmTM/neo4j-unmanaged-extension-template
This is working example of Neo4j unmanaged extension, that showcases several features:
- Basic setup
- Custom
PluginLifecycle
's - Simple and Advanced - Injecting your own services via
@Context
(details) - Custom request
Filter
(details) - Testing with
neo4j-harness
(details)
Other extensions that can be explored:
- jexp/neo4j-tx-participation
Neo4j framework
There is neo4j-framework developed by GraphAware.
It provides number of features for unmanaged extension development and testing. You should check out features section to find out what is available.
EDIT: There is neo4j-graphaware-extension-scaffold developed by MicTech
回答2:
Here is the scaffold for the Unmanaged Extension with GraphAware Framework
- neo4j-graphaware-extension-scaffold
来源:https://stackoverflow.com/questions/32713274/how-to-create-unmanaged-neo4j-extension