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

io.github.nichetoolkit.mybatis.MybatisSqlResolver Maven / Gradle / Ivy

The newest version!
package io.github.nichetoolkit.mybatis;

import io.github.nichetoolkit.mybatis.defaults.DefaultSqlResolver;
import org.springframework.stereotype.Indexed;

import java.lang.annotation.*;

/**
 * MybatisSqlResolver
 * 

The mybatis sql resolver interface.

* @author Cyan ([email protected]) * @see java.lang.annotation.Annotation * @see java.lang.annotation.Retention * @see java.lang.annotation.Target * @see java.lang.annotation.Documented * @see org.springframework.stereotype.Indexed * @since Jdk1.8 */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.PARAMETER}) @Documented @Indexed public @interface MybatisSqlResolver { /** * value *

The value method.

* @return {@link java.lang.Class}

The value return object is Class type.

* @see java.lang.Class */ Class[] value() default {}; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy