我是靠谱客的博主 自觉小土豆,最近开发中收集的这篇文章主要介绍java mysql 流水号_java中生成流水号的一个例子(使用关系型数据库),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

importjava.math.BigDecimal;importorg.quickbundle.project.RmProjectHelper;importorg.quickbundle.project.common.vo.RmCommonVo;importorg.slf4j.Logger;importorg.slf4j.LoggerFactory;/*** 流水号生成器

*@authorAdministrator

**/

public classSeriaNumberGenerator {

Logger logger= LoggerFactory.getLogger(SeriaNumberGenerator.class);private static int MAX_VALUE=9999;private static int MIN_VALUE = 1;/*** 根据业务标识符取到下一个流水号

*@parambusinessCode

*@return

*/

public synchronizedString getNextVal(String businessCode){intcurrentValue ;intnextValue ;

RmCommonVo comonVo=null;try{

comonVo= RmProjectHelper.getCommonServiceInstance().doQueryForObject("select CURRENT_VALUE from SERIAL_NUMBER WHERE KEY ='"+businessCode+"'");

}catch( org.springframework.dao.EmptyResultDataAccessException ex){

logger.error("结果集为空,SpringJdbc抛出异常,不影响程序执行...");

}//该key不存在(存放进去)

if(comonVo == null ||comonVo.size()== 0){

currentValue=MIN_VALUE;

nextValue= currentValue +1;

RmProjectHelper.getCommonServiceInstance().doUpdate(" insert into SERIAL_NUMBER (KEY, CURRENT_VALUE ) VALUES ('"+businessCode+"','"+nextValue+"')");

}// else{

currentValue= ((BigDecimal)comonVo.get("CURRENT_VALUE")).intValue();//已经到达最大值

if(MAX_VALUE==currentValue){

nextValue=MIN_VALUE;

}else{

nextValue= currentValue+1;

}

RmProjectHelper.getCommonServiceInstance().doUpdate("update SERIAL_NUMBER set CURRENT_VALUE='"+nextValue+"' WHERE KEY='"+businessCode+"'");

}

String finalValue= this.formatString(currentValue);returnfinalValue ;

}publicSeriaNumberGenerator(){

}/*** 将数字转换为字符串(当不足4位时高位补0)

*@paraminput

*@return

*/

public String formatString(intinput){

String result ;//大于1000时直接转换成字符串返回

if(input > 1000){

result= input+"";

}else{//根据位数的不同前边补不同的0

int length = (input +"").length();if(length == 1){

result= "000"+input;

}else if(length ==2){

result= "00"+input;

}else{

result= "0"+input;

}

}returnresult;

}

}

最后

以上就是自觉小土豆为你收集整理的java mysql 流水号_java中生成流水号的一个例子(使用关系型数据库)的全部内容,希望文章能够帮你解决java mysql 流水号_java中生成流水号的一个例子(使用关系型数据库)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部