Advertisement
Guest User

Untitled

a guest
Apr 30th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. spring.application.name=incident-service
  2. spring.jackson.serialization.WRITE_DATES_AS_TIMESTAMPS = true
  3.  
  4. #hibernate configuration
  5. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
  6. spring.jpa.properties.hibernate.transaction.jta.platform=org.hibernate.service.jta.platform.internal.JBossStandAloneJtaPlatform
  7. spring.jpa.properties.hibernate.id.new_generator_mappings=false
  8. spring.jpa.properties.hibernate.hbm2ddl.auto=validate
  9. spring.jpa.properties.hibernate.show_sql=false
  10. spring.jpa.properties.hibernate.connection.release_mode=after_statement
  11. spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
  12. spring.jpa.properties.entity-scan-packages=com.redhat.cajun.navy.incident.entity
  13.  
  14. narayana.transaction-manager-id=1
  15. narayana.default-timeout=120
  16. narayana.dbcp.enabled=true
  17. narayana.dbcp.defaultAutoCommit=false
  18.  
  19. management.endpoints.web.exposure.include=health,info,prometheus
  20. management.endpoint.metrics.enabled=false
  21. management.endpoint.prometheus.enabled=true
  22.  
  23. management.metrics.web.server.auto-time-requests=false
  24. management.metrics.enable.tomcat=false
  25. management.metrics.enable.process=true
  26. management.metrics.enable.system=true
  27. management.metrics.enable.logback=false
  28. management.metrics.enable.jvm=true
  29.  
  30. spring.datasource.url=jdbc:postgresql://localhost:5432/naps_emergency_response
  31. spring.datasource.username=naps
  32. spring.datasource.password=naps
  33.  
  34. kafka.bootstrap-address=localhost:9092
  35. kafka.group-id=incident-service
  36. kafka.concurrency=1
  37.  
  38. sender.destination.incident-reported-event=topic-incident-event
  39. listener.destination.update-incident-command=topic-incident-command
  40.  
  41. logging.config=file:/app/logging/logback.xml
  42. logging.level.com.redhat.cajun.navy.incident=DEBUG
  43.  
  44. narayana.dbcp.maxTotal=20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement