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

org.springframework.data.mybatis.repository.ResultMap Maven / Gradle / Ivy

Go to download

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 "";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy