Package org.flowable.spring.boot.app
Class AppEngineServicesAutoConfiguration
- java.lang.Object
-
- org.flowable.spring.boot.BaseEngineConfigurationWithConfigurers<org.flowable.app.spring.SpringAppEngineConfiguration>
-
- org.flowable.spring.boot.app.AppEngineServicesAutoConfiguration
-
@Configuration(proxyBeanMethods=false) @ConditionalOnAppEngine @EnableConfigurationProperties({FlowableProperties.class,FlowableAppProperties.class}) @AutoConfigureAfter(AppEngineAutoConfiguration.class) public class AppEngineServicesAutoConfiguration extends BaseEngineConfigurationWithConfigurers<org.flowable.app.spring.SpringAppEngineConfiguration>
Provides sane definitions for the various beans required to be productive with Flowable in Spring.- Author:
- Tijs Rademakers
-
-
Field Summary
-
Fields inherited from class org.flowable.spring.boot.BaseEngineConfigurationWithConfigurers
engineConfigurers
-
-
Constructor Summary
Constructors Constructor Description AppEngineServicesAutoConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.flowable.app.spring.AppEngineFactoryBeanappEngine(org.flowable.app.spring.SpringAppEngineConfiguration configuration)org.flowable.app.api.AppManagementServiceappManagementServiceBean(org.flowable.app.engine.AppEngine appEngine)org.flowable.app.api.AppRepositoryServiceappRepositoryServiceBean(org.flowable.app.engine.AppEngine appEngine)-
Methods inherited from class org.flowable.spring.boot.BaseEngineConfigurationWithConfigurers
invokeConfigurers, setEngineConfigurers
-
-
-
-
Method Detail
-
appEngine
@Bean(name="flowableAppEngine") public org.flowable.app.spring.AppEngineFactoryBean appEngine(org.flowable.app.spring.SpringAppEngineConfiguration configuration) throws Exception- Throws:
Exception
-
appRepositoryServiceBean
@Bean @ConditionalOnMissingBean public org.flowable.app.api.AppRepositoryService appRepositoryServiceBean(org.flowable.app.engine.AppEngine appEngine)
-
appManagementServiceBean
@Bean @ConditionalOnMissingBean public org.flowable.app.api.AppManagementService appManagementServiceBean(org.flowable.app.engine.AppEngine appEngine)
-
-