• springboot配置之Profile多环境支持


    Profile是spring对不同环境提供不同配置功能的支持,可以通过激活、指定参数等方式快速切换环境。

    • 多profile文件格式:
      - 格式:appilication-[profile].properties
        application-dev.properties、appilication-prod.properties
    • 多profile文档块模式
    • 激活方式
      - 命令行:--spring.profiles.active=dev
      - 配置文件:spring.profiles.active=dev
      - jvm参数:-Dspring.profiles.active=dev

    说明:

    第一种方式:

    resources下有以下文件:

    application.properties

    server.port=8080
    spring.profiles.active=dev

    application-dev.propertites

    server.port=8081

    application-prod.properties

    server.port=8082

    这时我们启动springboot:确实切换到了application-dev环境

    Tomcat started on port(s): 8081 (http) with context path ''

    第二种方式:我们注释掉上述三个文件中的内容,并在application.yml中进行编写:

    server:
      port: 8080
    spring:
      profiles:
        active: prod
    ---
    server:
      port: 8081
    spring:
      profiles: dev
    ---
    server:
      port: 8082
    spring:
      profiles: prod

    使用---可以区分环境块。并可以在主环境块中指定要使用的环境,启动springboot之后:

    Tomcat started on port(s): 8081 (http) with context path ''

    第三种方式:点击edit Configurations

    (1)使用命令行参数

    启动springboot:

    Tomcat started on port(s): 8082 (http) with context path '' 

    (2) 使用虚拟机参数

    Tomcat started on port(s): 8081 (http) with context path ''

    当虚拟机参数和命令行参数都存在时:命令行参数的优先级比虚拟机参数优先级要高

    (3)在运行jar包时:java -jar xxx.jar --spring.profiles.active=dev

  • 相关阅读:
    优秀网站看前端 —— 小米Note介绍页面
    移动端手势库hammerJS 2.0.4官方文档翻译
    io.js入门(二)—— 所支持的ES6(上)
    发布两款JQ小插件(图片查看器 + 分类选择器),开源
    io.js入门(一)—— 初识io.js
    (翻译)《Hands-on Node.js》—— Why?
    前端神器avalonJS入门(三)
    (翻译)《Hands-on Node.js》—— Introduction
    Linux 安装 adb环境
    MyBatisPlus
  • 原文地址:https://www.cnblogs.com/xiximayou/p/12248340.html
Copyright © 2020-2023  润新知