org.springframework.data.mybatis.mapping.MybatisPersistentProperty 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.mapping;
import org.apache.ibatis.type.JdbcType;
import org.apache.ibatis.type.TypeHandler;
import org.springframework.data.mapping.PersistentProperty;
public interface MybatisPersistentProperty
extends PersistentProperty {
/**
* Return whether the property is considered embeddable.
* @return
*/
boolean isEmbeddable();
String getColumnName();
JdbcType getJdbcType();
Class extends TypeHandler>> getSpecifiedTypeHandler();
}