I need to save the configuration of the Spring Boot application in the database.
Is it possible to store the database information in the application.properties
Spring Cloud Config Server supports JDBC (relational database) as a backend for configuration properties.
Spring boot Config Server will pull properties from a SQL Database on startup of your application. The database needs to have a table called PROPERTIES.
Following the link for more details:
https://cloud.spring.io/spring-cloud-config/multi/multi__spring_cloud_config_server.html
refer section: 2.1.7 JDBC Backend