com.codingapi.springboot.framework.event.SpringEventConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springboot-starter Show documentation
Show all versions of springboot-starter Show documentation
springboot-starter project for Spring Boot
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);
}
}