SpringBoot中多环境配置Profiles

本文介绍如何在SpringBoot项目中实现多环境配置,针对不同环境如开发、测试、生产等进行URL等配置的动态切换。当Spring找不到指定环境的数据源URL时,可能需要清理并重新编译来解决问题。
摘要由CSDN通过智能技术生成

SpringBoot中多环境配置Profiles

***************************
APPLICATION FAILED TO START
***************************

Description:

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

Reason: Failed to determine a suitable driver class


Action:

Consider the following:
	If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
	If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).


  • 项目中需要进行多个环境的切换时,比如
    https://i.loli.net/2021/09/16/IwCPJr52FWm73Ec.png

  • 每个环境环境都有对应的url配置,springboot项目运行时报错就是因为选中的环境dataSources中的url,spring找不到出现了错误,可以实现动态切换选中的配置环境;

	1、首先在application.xml文件中配置动态激活Profiles文件
spring:
  profiles:
    active: "@springboot.active@"
	2、在application.yml文件中配置所有需要进行切换的环境,中间使用--分隔
---
spring:
  profiles:
    active: local
---
spring:
  profiles:
    active: dev
---
spring:
  profiles:
    active: uat
---
spring:
  profiles:
    active: prod
---
spring:
  profiles:
    active: release
	3、在pom文件的<buid></buid>中配置文件路径
<resources>
    <resource>
        <directory
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值