com.lsnju.tpbase.annotation.EnableTpSpringConfig Maven / Gradle / Ivy
package com.lsnju.tpbase.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.context.annotation.ImportResource;
/**
*
* @author ls
* @since 2021/1/29 14:39
* @version V1.0
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@ImportResource({"classpath:/cc/spring/**/tp-*.xml"})
public @interface EnableTpSpringConfig {
}