将一些配置参数传递给我为 neo4j + GraphAware 编写的模块的正确方法是什么?我相信应该有一种方法可以将一些配置条目放入 neo4j.conf 并在我的模块代码中读取它们,但到目前为止我找不到它。
问问题
27 次
1 回答
2
绝对有可能将配置参数传递给您的模块。
最好的方法是查看使用此类配置的其他模块,GraphAware 不羞于开源模块(https://github.com/graphaware?utf8=%E2%9C%93&q=&type=&language=java)你可以找到很多。
我们以 uuid-module 为例:
在引导程序类中,您将找到从配置文件中读取配置参数的逻辑:
String uuidProperty = config.get(UUID_PROPERTY);
if (StringUtils.isNotBlank(uuidProperty)) {
configuration = configuration.withUuidProperty(uuidProperty);
LOG.info("uuidProperty set to %s", configuration.getUuidProperty());
}
找到的参数用于创建不可变的配置类:
模块引导结束后会将配置对象传递给模块的构造函数:
return new UuidModule(moduleId, configuration, database);
然后,您可以将此模块与配置一起使用:
public UuidModule(String moduleId, UuidConfiguration configuration, GraphDatabaseService database) {
super(moduleId);
this.uuidConfiguration = configuration;
this.uuidGenerator = instantiateUuidGenerator(configuration, database);
this.uuidIndexer = new LegacyIndexer(database, configuration);
}
于 2017-02-08T21:35:22.713 回答