spring:
profiles:
active: test
jackson:
date-format: yyyy-MM-dd HH:mm:ss
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/dispatch
username: root
password: huahai
---
#开发环境
spring:
profiles: dev
server:
port: 8081
---
#测试环境
spring:
profiles: test
server:
port: 8082
---
#生产环境
spring:
profiles: prod
server:
port: 8080
相关文章
- Spring boot项目maven的profile多环境配置不自动替换变量的问题解决
- spring boot多环境配置 直接上代码
- springboot学习四:Spring Boot profile多环境配置、devtools热部署
- spring boot 基础 多环境配置
- spring boot使用logback实现多环境日志配置
- spring boot使用logback实现多环境日志配置详解
- spring boot 中logback多环境配置
- Spring boot基础:配置文件配置变量、多环境的配置
- Spring Boot---(2)SpringBoot多环境配置和使用
- Spring Boot 多环境如何配置