123456789101112131415161718192021222324252627 |
- server:
- port: 8182
- error:
- include-message: always
- spring:
- datasource:
- url: jdbc:mysql://mysql-db:3306/address_microservice_db?createDatabaseIfNotExist=true
- #url: jdbc:mysql://localhost:3306/address_microservice_db?createDatabaseIfNotExist=true
- username: root
- password: root
- jpa:
- show-sql: true
- hibernate:
- ddl-auto: update
- properties:
- hibernate:
- dialect: org.hibernate.dialect.MySQL8Dialect
- application:
- name: address-microservice
- cloud:
- discovery:
- enabled: true
- eureka:
- client:
- service-url:
- defaultZone: http://eureka-server:8180/eureka
- #defaultZone: http://localhost:8180/eureka
|