Advertisement
Guest User

Untitled

a guest
Jul 11th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. 2013-05-03 07:58:38,211 - - DEBUG, [main], com.mchange.v2.c3p0.impl.DefaultConnectionTester, Testing a Connection in response to an Exception:
  2. com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'myData.qrtz_TRIGGERS' doesn't exist
  3.  
  4. org.quartz.scheduler.instanceName = APP1_SCHEDULER
  5. org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
  6. org.quartz.threadPool.threadCount = 4
  7. org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread = true
  8.  
  9. #specify the jobstore used
  10. org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
  11. org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
  12. org.quartz.jobStore.useProperties = false
  13.  
  14. #The datasource for the jobstore that is to be used
  15. org.quartz.jobStore.dataSource = myDS
  16.  
  17. #quartz table prefixes in the database
  18. org.quartz.jobStore.tablePrefix = qrtz_
  19. org.quartz.jobStore.misfireThreshold = 60000
  20. org.quartz.jobStore.isClustered = false
  21.  
  22. #The details of the datasource specified previously
  23. org.quartz.dataSource.myDS.driver = com.mysql.jdbc.Driver
  24. org.quartz.dataSource.myDS.URL = jdbc:mysql://localhost:3306/myData
  25. org.quartz.dataSource.myDS.user = root
  26. org.quartz.dataSource.myDS.password = root
  27. org.quartz.dataSource.myDS.maxConnections = 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement