Examples of InitSequenceGeneratorException


Examples of org.g4studio.core.id.InitSequenceGeneratorException

        initValue = this.minValue;
      } else {
        final String msg = this.id + " 序号生成器的序号已经达到最大值:" + maxValue
            + " 了!系统无法在分配序号!";
        logger.error(msg);
        throw new InitSequenceGeneratorException(msg);
      }
    }
    currCount = initValue;
    maxCount = currCount + cache;
    maxCount = java.lang.Math.min(maxCount, maxValue);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.