<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
# 指定环境: spring: profiles: active: dev # 开发环境 --- spring: config: activate: on-profile: dev server: port: 8082 # 生产环境 --- spring: config: activate: on-profile: prod server: port: 8083