SpringBoot --spring.profiles.active相关问题

springboot配置文件

  1. springboot支持yml或者properties两种方式
  2. 无论是哪种方式,都可以指定activeprofiles
    profiles官方文档
  3. spring支持在application.properties中直接配置数据库连接。
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test?useSSL=false&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true&useJDBCCompliantTimezoneShift=true&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
spring.datasource.username=test
spring.datasource.password=test12345
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
  1. 当我们开发功能的时候,区分本地测试,测试服务器,正式上线的服务器,分别为dev,qa

你可能感兴趣的:(java,java学习,server,spring,boot,java,mysql,数据库,centos)