Guest User

Untitled

a guest
Sep 21st, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. @RunWith(SpringRunner.class)
  2. @SpringBootTest
  3. public class ModelTest {...
  4.  
  5. server.port: 8080
  6. spring.datasource.url: jdbc:postgresql://localhost:5432/frontoffice
  7. spring.datasource.username: frontoffice
  8. spring.datasource.password: password
  9. spring.datasource.driverClassName: org.postgresql.Driver
  10. spring.redis.host: localhost
  11. spring.redis.port: 6379
  12. spring.data.mongodb.host: localhost
  13. spring.data.mongodb.port: 27017
  14. api.url-oauth: http://localhost:8080/oauth/token
  15. api.url-ui: http://localhost:3000
  16. document.upload-dir: /home/jcabre/data/uploads
  17. document.pending-key: server3-pending
  18. application.defaultLanguage: ca_ES
  19.  
  20. spring.jpa.hibernate.ddl-auto: validate
  21. spring.jpa.properties.hibernate.dialect: org.hibernate.dialect.PostgreSQL95Dialect
  22. spring.jpa.properties.hibernate.format_sql: true
  23. spring.jpa.properties.hibernate.id.new_generator_mappings: true
  24. spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults: false
Add Comment
Please, Sign In to add comment