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

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

There is a newer version: 3.2.6
Show newest version
package com.codingapi.springboot.framework.handler;

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 - 2024 Weber Informatics LLC | Privacy Policy