de.otto.synapse.configuration.SynapseAutoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of synapse-core Show documentation
Show all versions of synapse-core Show documentation
A library used at otto.de to implement Spring Boot based event-sourcing microservices.
The newest version!
package de.otto.synapse.configuration;
import com.fasterxml.jackson.databind.ObjectMapper;
import de.otto.synapse.annotation.MessageInterceptorBeanPostProcessor;
import de.otto.synapse.endpoint.DefaultReceiverHeadersInterceptor;
import de.otto.synapse.endpoint.DefaultSenderHeadersInterceptor;
import de.otto.synapse.endpoint.MessageInterceptorRegistry;
import de.otto.synapse.journal.Journal;
import de.otto.synapse.journal.JournalRegistry;
import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Role;
import org.springframework.core.annotation.Order;
import java.util.List;
import java.util.Map;
import static de.otto.synapse.translator.ObjectMappers.currentObjectMapper;
import static org.slf4j.LoggerFactory.getLogger;
import static org.springframework.beans.factory.config.BeanDefinition.ROLE_INFRASTRUCTURE;
import static org.springframework.core.Ordered.LOWEST_PRECEDENCE;
@Configuration
public class SynapseAutoConfiguration {
private static final Logger LOG = getLogger(SynapseAutoConfiguration.class);
private MessageInterceptorRegistry registry;
@Bean
@ConditionalOnMissingBean
public ObjectMapper objectMapper() {
return currentObjectMapper();
}
@Bean
@ConfigurationProperties(prefix = "synapse")
public SynapseProperties synapseProperties(@Value("${spring.application.name:Synapse}") String defaultName) {
return new SynapseProperties(defaultName);
}
@Bean
public MessageInterceptorRegistry messageInterceptorRegistry(final ApplicationContext applicationContext) {
if (registry == null) {
this.registry = new MessageInterceptorRegistry();
final Map configurers = applicationContext.getBeansOfType(MessageEndpointConfigurer.class);
if (configurers != null) {
configurers.forEach((beanName, bean) -> {
LOG.info("Configuring MessageEndpointConfigurer '" + beanName + "'");
bean.configureMessageInterceptors(registry);
});
}
}
return registry;
}
@Bean
public JournalRegistry journals(final List journals,
final MessageInterceptorRegistry registry) {
return new JournalRegistry(journals, registry);
}
/**
* Configures a {@link de.otto.synapse.endpoint.MessageInterceptor} that is used to add some default
* message headers when messages are sent to a {@link de.otto.synapse.endpoint.sender.MessageSenderEndpoint}.
*
* @param synapseProperties properties used to configure the interceptor
* @return DefaultSenderHeadersInterceptor
*/
@Bean
@Order(LOWEST_PRECEDENCE)
@ConditionalOnMissingBean
@ConditionalOnProperty(
prefix = "synapse.sender.default-headers",
name = "enabled",
havingValue = "true",
matchIfMissing = true)
public DefaultSenderHeadersInterceptor defaultSenderHeadersInterceptor(final SynapseProperties synapseProperties) {
return new DefaultSenderHeadersInterceptor(synapseProperties);
}
/**
* Configures a {@link de.otto.synapse.endpoint.MessageInterceptor} that is used to add some default
* message headers when messages are received by a {@link de.otto.synapse.endpoint.receiver.MessageReceiverEndpoint}.
*
* @param synapseProperties properties used to configure the interceptor
* @return DefaultReceiverHeadersInterceptor
*/
@Bean
@Order(LOWEST_PRECEDENCE)
@ConditionalOnMissingBean
@ConditionalOnProperty(
prefix = "synapse.receiver.default-headers",
name = "enabled",
havingValue = "true",
matchIfMissing = true)
public DefaultReceiverHeadersInterceptor defaultReceiverHeadersInterceptor(final SynapseProperties synapseProperties) {
return new DefaultReceiverHeadersInterceptor(synapseProperties);
}
/**
* Activate the MessageInterceptorBeanPostProcessor used to post-process beans having methods annotated as a
* {@link de.otto.synapse.annotation.MessageInterceptor}.
*
* @return MessageInterceptorBeanPostProcessor
*/
@Bean
@Role(ROLE_INFRASTRUCTURE)
public static MessageInterceptorBeanPostProcessor messageInterceptorBeanPostProcessor() {
return new MessageInterceptorBeanPostProcessor();
}
}