com.baomidou.mybatisplus.extension.incrementer.H2KeyGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-plus-extension Show documentation
Show all versions of mybatis-plus-extension Show documentation
An enhanced toolkit of Mybatis to simplify development.
package com.baomidou.mybatisplus.extension.incrementer;
import com.baomidou.mybatisplus.core.incrementer.IKeyGenerator;
/**
*
* H2 Sequence
*
*
* @author Caratacus
* @since 2017-06-12
*/
public class H2KeyGenerator implements IKeyGenerator {
@Override
public String executeSql(String incrementerName) {
return "select " + incrementerName + ".nextval";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy