美文网首页
SpringBoot yml 配置

SpringBoot yml 配置

作者: bug喵 | 来源:发表于2017-11-16 14:36 被阅读0次

    1.在 spring boot 中,有两种配置文件,一种是application.properties,另一种是application.yml,两种都可以配置spring boot 项目中的一些变量的定义,参数的设置等。

    application.properties 配置文件在写的时候要写完整,如:
    spring.profiles.active=dev
    spring.datasource.data-username=root
    spring.datasource.data-password=root

    在yml 文件中配置的话,写法如下:
    spring:
    profiles:
    active: prod
    datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/test
    username: root
    password: root
    yml 文件在写的时候层次感强,而且少写了代码。所以现在很多人都使用yml配置文件。

    相关文章

      网友评论

          本文标题:SpringBoot yml 配置

          本文链接:https://www.haomeiwen.com/subject/ziopmxtx.html