1、使用Profile文件进行多环境配置
application-dev.properties //开发环境配置信息
application-test.properties //测试环境配置文件
application-prod.properties //生产环境配置文件
文件添加完毕后在总的配置文件添加代码
spring.profiles.active=dev
启动spring boot 进行测试
2、使用@Profile注解进行多环境配置
步骤一:创建DBConnect接口文件
步骤二:实现DBConnnect接口(三种)
步骤三:编写controller进行测试