91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Profiles 如何在Spring Boot 中配置與使用

發布時間:2020-11-23 16:34:42 來源:億速云 閱讀:192 作者:Leah 欄目:編程語言

這期內容當中小編將會給大家帶來有關Profiles 如何在Spring Boot 中配置與使用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

Spring Profiles 提供了一套隔離應用配置的方式,不同的 profiles 提供不同組合的配置,在不同的環境中,應用在啟動時通過選擇激活某些特定的 profiles 來適應運行時環境,以達到在不同的環境可以使用相同的一套程序代碼。

環境

  1. JDK 8
  2. Maven 3
  3. IntelliJ IDEA 2016
  4. Spring Boot 1.5.2.RELEASE

@Profiles

你可以在任何 @Component(@Service,@Repository) 或 @Configuration 注解標注的類中使用 @Profiles 注解:

public interface PaymentService {
  String createPaymentQrcode();
}
@Service
@Profile("alipay")
public class AlipayService implements PaymentService {
  @Override
  public String createPaymentQrcode() {
    return "支付寶支付二維碼";
  }
}
@Service
@Profile({"default", "wechatpay"})
public class WechatpayService implements PaymentService {
  @Override
  public String createPaymentQrcode() {
    return "微信支付二維碼";
  }
}

在 Spring Boot 中,默認的 profile 是 default,因此,PaymentService.createPaymentQrcode() -> 微信支付二維碼。

你可以通過 spring.profiles.active 來激活某個特定 profile:

java -jar -Dspring.profiles.active='alipay' xxx.jar

PaymentService.createPaymentQrcode() -> 支付寶支付二維碼。

多環境配置

在Spring Boot 中,多環境配置文件可以使用 application-{profile}.{properties|yml} 的方式。

@Component
@ConfigurationProperties("jdbc")
public class JdbcProperties {
  private String username;
  private String password;
  // getters and setters
}

開發環境 application-dev.properties 配置:

jdbc.username=root
jdbc.password=123654

生產環境 application-prod.properties 配置:

jdbc.username=produser
jdbc.password=16888888

或:

開發環境 application-dev.yml 配置:

jdbc:
 username: root
 password: 123654

生產環境 application-prod.yml 配置:

jdbc:
 username: produser
 password: 16888888

或:

只使用 application.yml,并在此文件中通過 --- 分隔符創建多 profile 配置:

app:
 version: 1.0.0
spring:
 profiles:
  active: "dev"
---
spring:
 profiles: dev
jdbc:
 username: root
 password: 123654
---
spring:
 profiles: prod
jdbc:
 username: produser
 password: 16888888

命令行啟動:

java -jar -Dspring.profiles.active=prod xxxx.jar

上述就是小編為大家分享的Profiles 如何在Spring Boot 中配置與使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

梁河县| 寻甸| 九龙城区| 松溪县| 中山市| 丰顺县| 黎川县| 克拉玛依市| 乃东县| 当涂县| 电白县| 收藏| 旌德县| 崇左市| 舟曲县| 鞍山市| 津市市| 乐至县| 陇南市| 嘉义县| 丹凤县| 同德县| 五家渠市| 宁强县| 阜新| 兴义市| 平邑县| 东海县| 五寨县| 叙永县| 武夷山市| 新绛县| 三台县| 明溪县| 墨竹工卡县| 宜宾市| 孙吴县| 汕尾市| 库尔勒市| 内乡县| 和田县|