Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. # Hibernate properties
  2. spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
  3. spring.jpa.show-sql=false
  4. spring.jpa.properties.hibernate.format_sql=true
  5. spring.jpa.hibernate.ddl-auto= update
  6. spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation = false
  7.  
  8. # QuartzProperties
  9. spring.quartz.job-store-type = jdbc
  10. org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
  11. spring.quartz.properties.org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
  12. #spring.quartz.jdbc.schema=classpath:org/quartz/impl/jdbcjobstore/tables_postgres.sql
  13. org.quartz.jobStore.dataSource = default
  14. spring.quartz.properties.org.quartz.threadPool.threadCount = 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement