Annotation Type EnableProcessApplication
-
@Target(TYPE) @Retention(RUNTIME) @Import(SpringBootProcessApplication.class) @Documented @Inherited public @interface EnableProcessApplication
Annotation that disables theSpringProcessEngineConfiguration
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 DescriptorTo use it, just add the annotation to your Spring Boot application class:
@SpringBootApplication @EnableProcessApplication("myProcessApplicationName") public class MyApplication { ... }
-
-
Element Detail
-
value
String value
- Default:
- ""
-
-