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

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

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

import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class SpringEventConfiguration {

    @Bean
    public SpringEventInitializer springEventInitializer(ApplicationContext context) {
        return new SpringEventInitializer(context);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy