org.springframework.data.mybatis.repository.ResultMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-mybatis Show documentation
Show all versions of spring-data-mybatis Show documentation
The primary goal of the Spring Data project is to make it easier to build Spring-powered applications
that use data access technologies. This module deals with enhanced support for MyBatis based data access layers.
The newest version!
package org.springframework.data.mybatis.repository;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.ANNOTATION_TYPE })
@Documented
public @interface ResultMap {
/**
* select, insert, update, delete
* @return
*/
String value() default "";
}