Class Application
- java.lang.Object
-
- org.camunda.bpm.run.example.invoice.Application
-
- All Implemented Interfaces:
org.springframework.web.servlet.config.annotation.WebMvcConfigurer
@ConditionalOnProperty(name="enabled", havingValue="true", prefix="camunda.bpm.run.example") @Configuration @EnableProcessApplication("invoiceProcessApplicationSpringBoot") public class Application extends Object implements org.springframework.web.servlet.config.annotation.WebMvcConfigurer
-
-
Field Summary
Fields Modifier and Type Field Description protected InvoiceProcessApplication
invoicePa
protected ProcessEngine
processEngine
-
Constructor Summary
Constructors Constructor Description Application()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addResourceHandlers(org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry registry)
void
deployInvoice()
void
onPostDeploy(PostDeployEvent event)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.springframework.web.servlet.config.annotation.WebMvcConfigurer
addArgumentResolvers, addCorsMappings, addFormatters, addInterceptors, addReturnValueHandlers, addViewControllers, configureAsyncSupport, configureContentNegotiation, configureDefaultServletHandling, configureHandlerExceptionResolvers, configureMessageConverters, configurePathMatch, configureViewResolvers, extendHandlerExceptionResolvers, extendMessageConverters, getMessageCodesResolver, getValidator
-
-
-
-
Field Detail
-
processEngine
@Autowired protected ProcessEngine processEngine
-
invoicePa
protected InvoiceProcessApplication invoicePa
-
-
Method Detail
-
deployInvoice
@PostConstruct public void deployInvoice()
-
onPostDeploy
@EventListener public void onPostDeploy(PostDeployEvent event)
-
addResourceHandlers
public void addResourceHandlers(org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry registry)
- Specified by:
addResourceHandlers
in interfaceorg.springframework.web.servlet.config.annotation.WebMvcConfigurer
-
-