Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
themeEmacs
titlelobbyapi.yml
---
spring:
  profiles: local
  
server:
  port: 9000

eureka:
    instance:
        prefer-ip-address: true
        ip-address: 127.0.0.1

message: "hello, spring cloud -local"
---
spring:
  profiles: local2
  
server:
  port: 9001

eureka:
    instance:
        prefer-ip-address: true
        ip-address: 127.0.0.1

message: "hello, spring cloud -local"

---

...