background Recently, some friends who are new to Docker asked me that they want to dynamically pass parameters to microservices through Scenario Suppose there is a Springboot project with a database configuration item in it, but there are multiple database IPs in different database test environments (DEV\SIT\UAT). If you want to use the same Springboot project image, you can switch the database configuration at any time. In short, the database configuration of your Springboot application should be passed in externally instead of hardcoded. There is a database configuration in the Springboot application as follows: spring.datasource.url = jdbc:mysql://192.168.0.11:3306/db?useUnicode=true&characterEncoding=utf8 #Configure database username spring.datasource.username = sa #Configure database password spring.datasource.password = sa Solution Use Next, we replace the database configuration with a spEL expression in the Springboot configuration file #Configure database link spring.datasource.url = jdbc:mysql://${DB_HOST}:${DB_PORT}/${DB_NAME}?useUnicode=true&characterEncoding=utf8 #Configure database username spring.datasource.username = ${DB_USER} #Configure database password spring.datasource.password = ${DB_PASSWORD} Configure our database parameters in version: '3' services: web: restart: always depends_on: -db image: springboot-app-image build: . ports: - 8080:8080 environment: - DB_HOST=192.168.0.11 - DB_PORT=3306 - DB_USER=root - DB_PASSWORD=123456 - DB_NAME=db networks: - credit-facility-net deploy: mode: replicated replicas: 3 restart_policy: condition: on-failure delay: 5s max_attempts: 3 update_config: parallelism: 1 delay: 10s In this way, our Springboot application can dynamically obtain the database configuration when starting the container service This is the end of this article about how Docker dynamically passes parameters to Springboot projects. For more information about Docker Springboot dynamic parameter passing, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of MySQL data rows and row overflow mechanism
>>: Four ways to modify the default CSS style of element-ui components in Vue
On many websites, we have seen the input box disp...
Learning objectives: The two functions parseInt()...
background This article mainly tests whether the ...
Import the data exported from the Oracle database...
Detailed explanation of MySql automatic truncatio...
Table of contents Manual deployment 1. Create a s...
This article shares two methods of implementing t...
Preface: The Linux host is relatively easy to han...
Table of contents Preface Promise chaining MDN Er...
In order to extend the disk life for storing audi...
Friends who have bought space and built websites s...
Table of contents Preface Is the interviewer aski...
In daily maintenance, threads are often blocked, ...
When I first came into contact with docker, I was...
This article uses examples to illustrate the usag...