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

org.springframework.data.mybatis.mapping.MybatisPersistentProperty 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.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> getSpecifiedTypeHandler();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy