Guest User

Untitled

a guest
Nov 18th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. 2018/11/17 14:47:33.258 DEBUG ENGINE-14012 Job acquisition thread woke up
  2. 2018/11/17 14:47:33.258 DEBUG ENGINE-14022 Acquired 0 jobs for process engine 'default': []
  3. 2018/11/17 14:47:33.258 DEBUG ENGINE-14023 Execute jobs for process engine 'default': [8338]
  4. 2018/11/17 14:47:33.258 DEBUG ENGINE-14023 Execute jobs for process engine 'default': [8217]
  5. 2018/11/17 14:47:33.258 DEBUG ENGINE-14023 Execute jobs for process engine 'default': [8256]
  6. 2018/11/17 14:47:33.258 DEBUG ENGINE-14011 Job acquisition thread sleeping for 100 millis
  7. 2018/11/17 14:47:33.359 DEBUG ENGINE-14012 Job acquisition thread woke up
  8.  
  9. 2018/11/17 15:04:19.582 DEBUG Waiting for message from consumer. {"null":null}
  10. 2018/11/17 15:04:19.582 DEBUG Retrieving delivery for Consumer@5d05f453: tags=[{amq.ctag-0ivcbc2QL7g-Duyu2Rcbow=queue_response}], channel=Cached Rabbit Channel: AMQChannel(amqp://guest@127.0.0.1:5672/,4), conn: Proxy@77a5983d Shared Rabbit Connection: SimpleConnection@17a1dd78 [delegate=amqp://guest@127.0.0.1:5672/, localPort= 49812], acknowledgeMode=AUTO local queue size=0 {"null":null}
  11.  
  12. # Data source (PostgreSql)
  13. com.campDo.fr.camunda.datasource.url=jdbc:postgresql://localhost:5432/campDo
  14. com.campDo.fr.camunda.datasource.username=campDo
  15. com.campDo.fr.camunda.datasource.password=password
  16. com.campDo.fr.camunda.datasource.driver-class-name=org.postgresql.Driver
  17. com.campDo.fr.camunda.bpm.database.jdbc-batch-processing=false
  18. oms.camunda.retry.timer=1
  19. oms.camunda.retry.nb-max=2
  20.  
  21. @Bean
  22. public SpringProcessEngineConfiguration processEngineConfiguration() throws IOException {
  23. final SpringProcessEngineConfiguration config = new SpringProcessEngineConfiguration();
  24. config.setDataSource(camundaDataSource);
  25. config.setDatabaseSchemaUpdate("true");
  26. config.setTransactionManager(transactionManager());
  27. config.setHistory("audit");
  28. config.setJobExecutorActivate(true);
  29. config.setMetricsEnabled(false);
  30. final Resource[] resources = resourceLoader.getResources(CLASSPATH_ALL_URL_PREFIX + "/processes/*.bpmn");
  31. config.setDeploymentResources(resources);
  32.  
  33. return config;
  34. }
  35.  
  36. <dependency>
  37. <groupId>org.camunda.bpm.springboot</groupId>
  38. <artifactId>camunda-bpm-spring-boot-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.camunda.bpm.springboot</groupId>
  42. <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.camunda.bpm.springboot</groupId>
  46. <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
  47. </dependency>
  48.  
  49. config.setJobExecutorActivate(false);
Add Comment
Please, Sign In to add comment