基于POSTGRESQL的全局序列操作

基于POSTGRESQL的全局序列操作

使用全局序列生成器,在业务中标记区分,比如信令的区分!

import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Select;

/**
 * @ClassName SequenceMapper
 * @Description sql序列操作
 * @Author zhaoyj
 * @Date 2019/4/30 12:45
 */
public interface SequenceMapper {

    String name = "mytable_myid_seq";

    @Select("SELECT nextval('"+ name + "')")
    Integer nextIntegerId();

    @Delete("DROP SEQUENCE IF EXISTS " + name)
    void delete();

    @Insert("CREATE SEQUENCE " + name + " INCREMENT 1 START 1 MINVALUE 1 MAXVALUE " + Integer.MAX_VALUE +" CACHE 1;")
    void create();

    @Select("select relname from pg_class where relkind='S'  and relname='" + name + "'")
    String find();
}

全局获取序列

可以创建一个单例类型的类,获取序列,如下:

import com.mti.mapper.SequenceMapper;
import org.springframework.util.StringUtils;

/**
 * @ClassName SecUtils
 * @Description SecUtils
 * @Author zhaoyj
 * @Date 2019/4/29 11:47
 */

public class SecUtils {

    private static SequenceMapper mapper;

    /**
     * 获取下一个序列
     * @return
     */
    public static Integer nextIntegerId(){
        if(mapper == null){
            synchronized (SecUtils.class){
                if(mapper == null){
                    init();
                }
            }
        }
        return mapper.nextIntegerId();
    }

    /**
     * 初始化序列
     */
    private static void init(){
        mapper = SpringUtils.getBean(SequenceMapper.class);
        if(StringUtils.isEmpty(mapper.find())){
            mapper.create();
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值