neo4jJava的配置文件
时间: 2023-10-04 22:12:35 浏览: 63
neo4j的Java配置文件通常是一个.properties文件,可以在Java代码中使用Properties类加载。
下面是一个示例配置文件:
```
# Neo4j server configuration
neo4j.server.uri=http://localhost:7474/db/data/
neo4j.server.username=neo4j
neo4j.server.password=password
# Connection pool configuration
neo4j.connection.pool.maxIdle=10
neo4j.connection.pool.maxTotal=100
neo4j.connection.pool.maxWaitMillis=5000
neo4j.connection.pool.minIdle=5
```
在Java中加载这个配置文件的代码如下:
```java
Properties props = new Properties();
InputStream is = this.getClass().getResourceAsStream("/neo4j.properties");
props.load(is);
// 获取配置项
String uri = props.getProperty("neo4j.server.uri");
String username = props.getProperty("neo4j.server.username");
String password = props.getProperty("neo4j.server.password");
int maxIdle = Integer.parseInt(props.getProperty("neo4j.connection.pool.maxIdle"));
int maxTotal = Integer.parseInt(props.getProperty("neo4j.connection.pool.maxTotal"));
int maxWaitMillis = Integer.parseInt(props.getProperty("neo4j.connection.pool.maxWaitMillis"));
int minIdle = Integer.parseInt(props.getProperty("neo4j.connection.pool.minIdle"));
```
在这个示例中,我们使用Properties类加载neo4j.properties文件,并获取了其中的配置项。你可以根据自己的实际需求调整配置项。
阅读全文