Apache Solr 的 Spring 数据中的日期类型
Date type in Spring data for Apache Solr
Solr Spring 数据中是否有 Solr "date" 类型表示?我需要索引新文档的 timestamp/date 索引。我正在为 Apache Solr 使用 Spring 数据。我如何在 Solr 的 Spring 数据中表示 Solr "date" 类型?
Spring 数据允许在您的 class 定义中使用 class java.util.Date
作为字段类型。
像这样的代码应该可以工作:
public class Clazz {
@Indexed("date_dt") Date date;
}
Solr Spring 数据中是否有 Solr "date" 类型表示?我需要索引新文档的 timestamp/date 索引。我正在为 Apache Solr 使用 Spring 数据。我如何在 Solr 的 Spring 数据中表示 Solr "date" 类型?
Spring 数据允许在您的 class 定义中使用 class java.util.Date
作为字段类型。
像这样的代码应该可以工作:
public class Clazz {
@Indexed("date_dt") Date date;
}