Specify database name to use

Hello,

I want to know how can we specify the database name in the configuration, as like :

pring:
  data:
    neo4j:
      uri: 
      username: 
      password: 

Thank you

Why do you need to specify the database name?

org:
  neo4j:
    driver:
      uri: bolt://localhost:7687
      authentication:
        username: neo4j
        password: neo4j

You could only have one database running and pointing at the specific URI, you wont be needing to specify the DB's name.