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

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

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

import lombok.AllArgsConstructor;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.ApplicationContext;

@AllArgsConstructor
public class SpringEventInitializer implements InitializingBean {

    private final ApplicationContext context;

    @Override
    public void afterPropertiesSet() throws Exception {
        DomainEventContext.getInstance().initContext(context);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy