ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
```java //如果实体类被注解@Document标注并指定indexName,当索引不存在时会 //自动创建索引,这里就不对索引操作记录笔记了,可参考官网文档 //https://docs.spring.io/spring-data/elasticsearch/docs/4.2.5/reference/html/#elasticsearch.operations @Document(indexName = "product", shards = 3, replicas = 1) public class Product { ... } ```