Yaml properties example

Can someone show an example properties.yaml file? All I need are the basics: url, user, pw. Its not obvious to me how to set the profile.

Thanks.

Are you referring to a Spring Boot application.yml with Spring Data Neo4j or to something else?

For this it would look like:

spring:
	data:
		neo4j:
			username: neo4j
			password: secret
			uri: bolt://localhost:7687

It has changed a little bit, according to the reference documentation of Spring Boot 3.0 to configure connection you need to add the following lines to your application.properties file:

spring.neo4j.uri=bolt://localhost:7687
spring.neo4j.authentication.username=neo4j
spring.neo4j.authentication.password=your-password

Which, in YAML (application.yaml) is an equivalent of:

spring:
  neo4j:
      url: bolt://localhost:7687
      authentication:
        username: neo4j
        password: your-password

To be more precise: It has already changed in Spring Boot 2.4.
At this time we started to create an independent Driver bean (independent of any Spring Data Neo4j dependency). This includes to create a property structure that aligns with the properties supported by the driver.