当前位置:数据库 > mongodb >>

spring data 4 mongoDB自动创建复合索引

spring data 4 mongoDB自动创建复合索引
 
spring data 4 mongodb 在domain上添加annation,自动创建复合索引时需要使用CompoundIndexes。
  www.zzzyk.com  
例如:
 
@CompoundIndex(name = "shop_index", def = "{platform : 1, shopId : 1}") 
 
程序也不会有编译错误或者执行错误,但是spring data不会建立任何索引, 
下面这样写才会启动时自动建立复合索引。 
 
@CompoundIndexes({ 
@CompoundIndex(name = "shop_index", def = "{platform : 1, shopId : 1}") 
}) 
 
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,