Annotation Type EnableProcessApplication


  • @Target(TYPE)
    @Retention(RUNTIME)
    @Import(SpringBootProcessApplication.class)
    @Documented
    @Inherited
    public @interface EnableProcessApplication
    Annotation that disables the SpringProcessEngineConfiguration auto-deploy feature and instead uses the required META-INF/processes.xml as an indicator for resource scanning. This also allows all processes.xml configuration features described here: The processes.xml Deployment Descriptor

    To use it, just add the annotation to your Spring Boot application class:

     @SpringBootApplication
     @EnableProcessApplication("myProcessApplicationName")
     public class MyApplication {
     
     ...
     
     }
     
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String value  
    • Element Detail

      • value

        java.lang.String value
        Default:
        ""