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

top.yonyong.yconfig.config.EnableYConfigAopConfiguration Maven / Gradle / Ivy

There is a newer version: 1.1.0.RELEASE
Show newest version
package top.yonyong.yconfig.config;


import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.context.annotation.Import;
import top.yonyong.yconfig.config.aop.SystemConfigAop;
import top.yonyong.yconfig.utils.MySpringContext;

import java.lang.annotation.*;

/**
 * @author yonyong
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import({ConfigContextAutoConfig.class,SystemConfigAop.class, MySpringContext.class, DefaultYConfigHandlerFactory.class})
@EnableAspectJAutoProxy
public @interface EnableYConfigAopConfiguration {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy