org.axonframework.spring.config.AxonConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axon-spring Show documentation
Show all versions of axon-spring Show documentation
Module providing Spring specific helper functionality to ease configuration / set-up of an Axon application, as
well as some Spring specific infrastructure components.
/*
* Copyright (c) 2010-2017. Axon Framework
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.axonframework.spring.config;
import org.axonframework.commandhandling.CommandBus;
import org.axonframework.commandhandling.gateway.CommandGateway;
import org.axonframework.commandhandling.gateway.DefaultCommandGateway;
import org.axonframework.commandhandling.model.Repository;
import org.axonframework.config.Configuration;
import org.axonframework.config.Configurer;
import org.axonframework.eventhandling.EventBus;
import org.axonframework.eventhandling.saga.ResourceInjector;
import org.axonframework.messaging.Message;
import org.axonframework.messaging.correlation.CorrelationDataProvider;
import org.axonframework.monitoring.MessageMonitor;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.SmartLifecycle;
import org.springframework.context.annotation.Bean;
import java.util.List;
import java.util.function.Supplier;
/**
* Spring Configuration class that defines a number of conditional beans. It also allows for access to components that
* are available in the Configuration, but not made available as Spring beans by default.
*/
@org.springframework.context.annotation.Configuration("org.axonframework.spring.config.AxonConfiguration")
public class AxonConfiguration implements Configuration, InitializingBean, ApplicationContextAware, SmartLifecycle {
private Configuration config;
private final Configurer configurer;
private volatile boolean running = false;
/**
* Initializes a new {@link AxonConfiguration} that uses the given {@code configurer} to build the configuration.
*
* @param configurer configuration builder for the AxonConfiguration
*/
public AxonConfiguration(Configurer configurer) {
this.configurer = configurer;
}
@NoBeanOfType(CommandBus.class)
@Bean
public CommandBus commandBus() {
return config.commandBus();
}
@NoBeanOfType(EventBus.class)
@Bean
@Override
public EventBus eventBus() {
return config.eventBus();
}
@Override
public ResourceInjector resourceInjector() {
return config.resourceInjector();
}
/**
* Returns the CommandGateway used to send commands to command handlers.
*
* @param commandBus the command bus to be used by the gateway
* @return the CommandGateway used to send commands to command handlers
*/
@NoBeanOfType(CommandGateway.class)
@Bean
public CommandGateway commandGateway(CommandBus commandBus) {
return new DefaultCommandGateway(commandBus);
}
@Override
public Repository repository(Class aggregateType) {
return config.repository(aggregateType);
}
@Override
public T getComponent(Class componentType, Supplier defaultImpl) {
return config.getComponent(componentType, defaultImpl);
}
@Override
public > MessageMonitor super M> messageMonitor(Class> componentType, String componentName) {
return config.messageMonitor(componentType, componentName);
}
@Override
public List correlationDataProviders() {
return config.correlationDataProviders();
}
@Override
public void onStart(Runnable startHandler) {
config.onStart(startHandler);
}
@Override
public void onShutdown(Runnable shutdownHandler) {
config.onShutdown(shutdownHandler);
}
@Override
public void start() {
config.start();
this.running = true;
}
@Override
public void shutdown() {
config.shutdown();
}
@Override
public void stop() {
shutdown();
this.running = false;
}
@Override
public boolean isRunning() {
return running;
}
@Override
public boolean isAutoStartup() {
return true;
}
@Override
public void stop(Runnable callback) {
stop();
callback.run();
}
@Override
public int getPhase() {
return 0;
}
@Override
public void afterPropertiesSet() throws Exception {
config = configurer.buildConfiguration();
}
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
configurer.registerComponent(ApplicationContext.class, c -> applicationContext);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy