123456789101112131415161718192021222324 |
- server:
- port: 8183
- error:
- include-message: always
- spring:
- application:
- name: project-microservice
- datasource:
- url: jdbc:mysql://mysql-db:3306/project_microservice_db?createDatabaseIfNotExist=true
- #url: jdbc:mysql://localhost:3306/project_microservice_db?createDatabaseIfNotExist=true
- username: root
- password: root
- jpa:
- show-sql: true
- hibernate:
- ddl-auto: update
- properties:
- hibernate:
- dialect: org.hibernate.dialect.MySQL8Dialect
- eureka:
- client:
- service-url:
- defaultZone: http://eureka-server:8761/eureka
- #defaultZone: http://localhost:8761/eureka
|