1、application.yaml配置
server:
port: 8088
spring:
profiles:
active: dev #test、online
通过在resource下建立application-“环境”.yaml文件,并在文件内作出相应的配置即可,在application.yaml中通过active指定不同的环境即可
spring:
profiles:
active: dev #test、online
server:
port: 8088
spring:
profiles:
active: dev #test、online
通过在resource下建立application-“环境”.yaml文件,并在文件内作出相应的配置即可,在application.yaml中通过active指定不同的环境即可
spring:
profiles:
active: dev #test、online