ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 一、概述 有时候,有些业务操作,两次针对同一个对象的相同操作需强制指定间隔时间; ## 二、方案 引入: ``` @Autowired private OperationConstrainedExecutor operationConstrainedExecutor; ``` ``` long operateEntityId =1; long periodMinutes =5; if (operationConstrainedExecutor.canExecuteThisRequestConstrainedActionNow(this, operateEntityId , periodMinutes , false)) { //间隔时间业务 } ```