Spring Boot - Application Configuration
You have this in
Which database URL will Spring Boot use?
application.properties:spring.datasource.url=jdbc:mysql://localhost:3306/db
spring.datasource.username=root
spring.datasource.password=pass
spring.datasource.url=jdbc:mysql://localhost:3306/otherdb
Which database URL will Spring Boot use?
