com.mybatis.jpa.keygen.IdGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-jpa Show documentation
Show all versions of mybatis-jpa Show documentation
The plugins for mybatis, in order to provider the ability to handler jpa.
package com.mybatis.jpa.keygen;
/**
* @author sway.li
*/
public interface IdGenerator {
Object nextId();
Object[] nextSegment(int size);
}