All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codingapi.springboot.framework.event.SpringHandlerConfiguration Maven / Gradle / Ivy

package com.codingapi.springboot.framework.event;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.List;

@Configuration
public class SpringHandlerConfiguration {

    @Bean
    public SpringEventHandler springEventHandler(@Autowired(required = false) List handlers) {
        return new SpringEventHandler(handlers);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy