Advertisement
GreMendes

Untitled

Nov 3rd, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. # ===================================================================
  2. # Spring Boot configuration.
  3. #
  4. # This configuration is used for unit/integration tests.
  5. # ===================================================================
  6.  
  7. # ===================================================================
  8. # Standard Spring Boot properties.
  9. # Full reference is available at:
  10. # http://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
  11. # ===================================================================
  12.  
  13.  
  14. spring:
  15. application:
  16. name: Facebug
  17. jackson:
  18. serialization.write_dates_as_timestamps: false
  19. datasource:
  20. type: com.zaxxer.hikari.HikariDataSource
  21. url:
  22. name:
  23. username:
  24. password:
  25. jpa:
  26. database-platform: com.gregorymendes.fbg.domain.util.FixedH2Dialect
  27. database: H2
  28. open-in-view: false
  29. show-sql: true
  30. hibernate:
  31. ddl-auto: none
  32. naming:
  33. strategy: org.springframework.boot.orm.jpa.hibernate.SpringNamingStrategy
  34. properties:
  35. hibernate.cache.use_second_level_cache: false
  36. hibernate.cache.use_query_cache: false
  37. hibernate.generate_statistics: true
  38. hibernate.hbm2ddl.auto: validate
  39. data:
  40. elasticsearch:
  41. cluster-name:
  42. cluster-nodes:
  43. properties:
  44. path:
  45. logs: target/elasticsearch/log
  46. data: target/elasticsearch/data
  47. mail:
  48. host: localhost
  49. mvc:
  50. favicon:
  51. enabled: false
  52. thymeleaf:
  53. mode: XHTML
  54.  
  55. liquibase:
  56. contexts: test
  57.  
  58. security:
  59. basic:
  60. enabled: false
  61.  
  62. server:
  63. port: 10344
  64. address: localhost
  65.  
  66. # ===================================================================
  67. # JHipster specific properties
  68. # ===================================================================
  69.  
  70. jhipster:
  71. async:
  72. corePoolSize: 2
  73. maxPoolSize: 50
  74. queueCapacity: 10000
  75. security:
  76. rememberMe:
  77. # security key (this key should be unique for your application, and kept secret)
  78. key: 18b94a7ee2b9664926acf2582e77ebe2f7c34d2a
  79. metrics: # DropWizard Metrics configuration, used by MetricsConfiguration
  80. jmx.enabled: true
  81. swagger:
  82. title: Facebug API
  83. description: Facebug API documentation
  84. version: 0.0.1
  85. termsOfServiceUrl:
  86. contactName:
  87. contactUrl:
  88. contactEmail:
  89. license:
  90. licenseUrl:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement