概述:本文主要介绍springboot基于mongodb有序id生成,如生成工单编号GD202109290001。单机情况下效率每秒生成5000个有序ID。
实现方式如下
maven
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
代码编写
@Document
@Data
public class Incr {
@Id
private String id;
private String collectionName;
private Long incrId;
}
@Service
public class IncrService {
@Autowired
private MongoTemplate mongoTemplate;
/**
* 获取自增ID
* @param collectionName
* @return
*/
public Long getIncrId(String collectionName){
Query query = new Query(Criteria.where("collectionName").is(collectionName));
Update update = new Update();
update.inc("incrId");
FindAndModifyOptions options = FindAndModifyOptions.options();
options.upsert(true);
options.returnNew(true);
Incr incr = mongoTemplate.findAndModify(query,update,options,Incr.class);
return incr.getIncrId();
}
}
@RestController
@RequestMapping(value = "incr")
public class IncrController {
@Autowired
private IncrService incrService;
@RequestMapping(value = "test")
public Object test(){
long start = System.currentTimeMillis();
List<String> aas = new ArrayList<>();
for (int i=0;i<10000;i++){
aas.add(i+"");
}
int i = 0;
aas.parallelStream().forEach(aa -> {
incrService.getIncrId(aa+"");
});
System.out.println(System.currentTimeMillis()-start);
return true;
}
}
到此这篇关于详解SpringBoot Mongo 自增长ID有序规则的文章就介绍到这了,更多相关SpringBoot Mongo 自增长ID内容请搜索靠谱客以前的文章或继续浏览下面的相关文章希望大家以后多多支持靠谱客!
最后
以上就是漂亮月饼最近收集整理的关于详解SpringBoot Mongo 自增长ID有序规则的全部内容,更多相关详解SpringBoot内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复