Class JdbcMessageStoreAutoConfiguration

java.lang.Object
org.activiti.cloud.starter.messages.jdbc.JdbcMessageStoreAutoConfiguration

@AutoConfiguration(before=org.activiti.cloud.services.messages.core.config.MessagesCoreAutoConfiguration.class, after={org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration.class,org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration.class}) @ConditionalOnClass(org.springframework.integration.jdbc.store.JdbcMessageStore.class) @PropertySource("classpath:config/activiti-cloud-starter-messages-jdbc.properties") public class JdbcMessageStoreAutoConfiguration extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.integration.support.locks.LockRegistry
    lockRegistry(org.springframework.integration.jdbc.lock.LockRepository lockRepository)
     
    org.springframework.integration.jdbc.lock.LockRepository
     
    org.springframework.integration.store.MessageGroupStore
    messageStore(org.springframework.jdbc.core.JdbcTemplate jdbcTemplate, org.activiti.cloud.services.messages.core.config.MessageAggregatorProperties properties)
     
    org.springframework.integration.metadata.ConcurrentMetadataStore
    metadataStore(org.springframework.jdbc.core.JdbcTemplate jdbcTemplate)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • JdbcMessageStoreAutoConfiguration

      public JdbcMessageStoreAutoConfiguration()
  • Method Details

    • messageStore

      @Bean @ConditionalOnMissingBean public org.springframework.integration.store.MessageGroupStore messageStore(org.springframework.jdbc.core.JdbcTemplate jdbcTemplate, org.activiti.cloud.services.messages.core.config.MessageAggregatorProperties properties)
    • metadataStore

      @Bean @ConditionalOnMissingBean public org.springframework.integration.metadata.ConcurrentMetadataStore metadataStore(org.springframework.jdbc.core.JdbcTemplate jdbcTemplate)
    • lockRepository

      @Bean @ConditionalOnMissingBean public org.springframework.integration.jdbc.lock.LockRepository lockRepository(DataSource dataSource)
    • lockRegistry

      @Bean @ConditionalOnMissingBean public org.springframework.integration.support.locks.LockRegistry lockRegistry(org.springframework.integration.jdbc.lock.LockRepository lockRepository)