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

com.lsnju.tpbase.annotation.EnableTpSpringConfig Maven / Gradle / Ivy

There is a newer version: 2.7.14
Show newest version
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 {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy