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

com.osc.lego.lazyloader.annotation.LazyLoadBy Maven / Gradle / Ivy

The newest version!
package com.osc.lego.lazyloader.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 延迟加载
 *
 * @author peter
 * @date 2023/05/24
 */
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface LazyLoadBy {
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy