Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 459 Bytes

Spring profile Error.md

File metadata and controls

46 lines (39 loc) · 459 Bytes
#spring:
#  profiles:
#    active: real1
#server:
#  port: 8081
#
#---
#spring:
#  profiles:
#    active: real2
#server:
#  port: 8082

---
spring:
  profiles:
    group:
      "real1": "real1_port"

---
spring:
  config:
    activate:
      on-profile: "real1_port"

server:
  port: 8081

---
spring:
  profiles:
    group:
      "real2": "real2_port"


---
spring:
  config:
    activate:
      on-profile: "real2_port"

server:
  port: 8082
---