How to realize profile multi-environment switching of SpringBoot
Today, I would like to share with you the relevant knowledge of SpringBoot's profile multi-environment switching. The content is detailed and the logic is clear. I believe most people still know too much about this knowledge, so share this article for your reference. I hope you can get something after reading this article. Let's learn about it.
SpringBoot profile multi-environment switching 1. Configure profile and build dev true dev 127.0.0.1 build dev true dev 8848 DEV in the pom file 127.0.0.1:8848 DEV test test 127.0.0.1:8848 TEST 127.0.0.1:8848 TEST prod prod 127.0.0.1:8848 PROD 127.0 . 0.1:8848 PROD src/main/resources true application.yml application-dev.yml application -test.yml src/main/resources true application.yml application-$ {profiles} .yml
Second, create three files dev\ test
III. Contents of bootstrap source files
Spring: profiles: active: test
IV. Bootstrap-dev content
Server: port: 8080spring: profiles: dev
5. Bootstrap-test content
Server: port: 8080spring: profiles: test
VI. Switching
These are all the contents of the article "how to achieve profile multi-environment switching in SpringBoot". Thank you for reading! I believe you will gain a lot after reading this article. The editor will update different knowledge for you every day. If you want to learn more knowledge, please pay attention to the industry information channel.