when multiple people collaborate to develop a spring boot project, different developers may have different local server configurations for testing. For example, developer A"s local database password is 123456 B the developer"s local database password is root,. If they modify the same application.yaml, the code will conflict.
want to know if you can write your own database configuration separately, which is added to .gitignore and will not be uploaded to git, and then spring boot connects to the database to determine whether there is such a configuration, and if so, use this configuration first.