Application de gestion de projets. Un projet doit affecté à un utilisateur et une société qui existent

application.yml 676B

123456789101112131415161718192021222324252627
  1. server:
  2. port: 8182
  3. error:
  4. include-message: always
  5. spring:
  6. datasource:
  7. url: jdbc:mysql://mysql-db:3306/address_microservice_db?createDatabaseIfNotExist=true
  8. #url: jdbc:mysql://localhost:3306/address_microservice_db?createDatabaseIfNotExist=true
  9. username: root
  10. password: root
  11. jpa:
  12. show-sql: true
  13. hibernate:
  14. ddl-auto: update
  15. properties:
  16. hibernate:
  17. dialect: org.hibernate.dialect.MySQL8Dialect
  18. application:
  19. name: address-microservice
  20. cloud:
  21. discovery:
  22. enabled: true
  23. eureka:
  24. client:
  25. service-url:
  26. defaultZone: http://eureka-server:8180/eureka
  27. #defaultZone: http://localhost:8180/eureka

Powered by TurnKey Linux.