springboot多个配置文件的配置 多个application.properties的配置 版本 sprigboot2.1

 

注意副配置文件的命名方式是application-XXX.properties

spring.profiles.active=druid   

springboot多个配置文件的配置 多个application.properties的配置 版本 sprigboot2.1_第1张图片

springboot多个配置文件的配置 多个application.properties的配置 版本 sprigboot2.1_第2张图片

spring.profiles.active=druid


server.address=127.0.0.1

server.port=8081

#必须有
mybatis.mapper-locations=classpath*:com/hanhan/dao/xmlMapper/*.xml
#必须有
logging.config=classpath:logback.xml
#必须有
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#必须有
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/ipace?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=CTT
#必须有
spring.datasource.username=root
#必须用
spring.datasource.password=root


#32位随机字符串
#dd9008e5ec8608c9eb9d57ab764651eb
rand.str = ${random.value}
#36位,比32位的多了4个-
#0cf88531-9569-44c4-926e-2528dd5948e2
rand.uuid = ${random.uuid}
#随机int类型,主意有负数
rand.intid = ${random.int}
#随机long类型
rand.longid = ${random.long}
#100以内的随机int类型
rand.number = ${random.int(100)}
#0-10亿范围内的随机int类型
rand.range = ${random.int[0,1000000000]}

springboot多个配置文件的配置 多个application.properties的配置 版本 sprigboot2.1_第3张图片

 

java -jar beetltest-0.0.1-SNAPSHOT.jar -spring.config.location=classpath:/application.properties

 

 

 

 

你可能感兴趣的:(springboot多个配置文件的配置 多个application.properties的配置 版本 sprigboot2.1)