Advertisement
sebi0920

CamundaBpmProcessApplication

Nov 7th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  1. package net.cibex.menuplaner;
  2.  
  3. import java.util.HashMap;
  4. import java.util.Map;
  5.  
  6. import org.camunda.bpm.application.PostDeploy;
  7. import org.camunda.bpm.application.ProcessApplication;
  8. import org.camunda.bpm.application.impl.ServletProcessApplication;
  9. import org.camunda.bpm.engine.ProcessEngine;
  10. import org.springframework.boot.SpringApplication;
  11. import org.springframework.boot.autoconfigure.SpringBootApplication;
  12.  
  13.  
  14. /**
  15.  * Process Application exposing this application's resources the process engine.
  16.  */
  17. @ProcessApplication("Menu App")
  18. public class CamundaBpmProcessApplication extends ServletProcessApplication {
  19.  
  20.  
  21.     public static void main(String... args) {
  22.         SpringApplication.run(CamundaBpmProcessApplication.class, args);
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement