Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从任何特定值开始自动编号,例如 CUBA 平台中的 1000?
在正在运行的应用程序中,转到 Administration > JMX Console,找到app-core.cuba:type=UniqueNumbersMBean 并调用它的setCurrentNumber()方法,传递您的序列名称(比如abc)和所需的起始编号(1000)。
app-core.cuba:type=UniqueNumbers
setCurrentNumber()
abc
1000
如果您需要以编程方式执行此操作,请获取UniqueNumbersAPI对中间件上可用 bean 的引用并调用其setCurrentNumber()方法。
UniqueNumbersAPI