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

com.base4j.mybatis.config.mybatis.annotations.Cache Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.base4j.mybatis.config.mybatis.annotations;

import java.lang.annotation.*;

/**
 * Created by panlc on 2017-04-13.
 */

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Cache {

    CacheType cacheType() default CacheType.MYBATIS;

    public enum CacheType{
        MYBATIS
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy