美文网首页
spring-boot:application.properti

spring-boot:application.properti

作者: BenjaminCool | 来源:发表于2018-12-25 23:05 被阅读0次

    application-properties:是spring-boot默认加载的,是个入口:所有需要配置的在这个文件中指定:

    1. profiles

    spring.profiles.active=dev,hsqldb

    For example, when an application with the following properties is run by using the switch, --spring.profiles.active=prod, the proddb and prodmq profiles are also activated:


    my.property: fromyamlfile

    spring.profiles: prod
    spring.profiles.include:

    • proddb
    • prodmq
    1. 要想替换:application-properties:可以在命令行中指定:
      $ java -jar myproject.jar --spring.config.name=myproject

    $ java -jar myproject.jar --spring.config.location=classpath:/default.properties,classpath:/override.properties

    1. 加载其他的属性文件:

    可以用: spring.profiles.include, 加载其他的额外的属性文件;

    也可用@PropertySource("application-demo.properties")

    相关文章

      网友评论

          本文标题:spring-boot:application.properti

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