当前位置: 首页>>代码示例>>Java>>正文


Java Document类代码示例

本文整理汇总了Java中org.springframework.data.elasticsearch.annotations.Document的典型用法代码示例。如果您正苦于以下问题:Java Document类的具体用法?Java Document怎么用?Java Document使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Document类属于org.springframework.data.elasticsearch.annotations包,在下文中一共展示了Document类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getPersistentEntityFor

import org.springframework.data.elasticsearch.annotations.Document; //导入依赖的package包/类
@SuppressWarnings("unchecked")
public ElasticsearchPersistentEntity<Object> getPersistentEntityFor(Class clazz) {
	Assert.isTrue(clazz.isAnnotationPresent(Document.class), "Unable to identify index name. " + clazz.getSimpleName()
			+ " is not a Document. Make sure the document class is annotated with @Document(indexName=\"foo\")");
	return (ElasticsearchPersistentEntity<Object>) elasticsearchConverter.getMappingContext().getRequiredPersistentEntity(clazz);
}
 
开发者ID:VanRoy,项目名称:spring-data-jest,代码行数:7,代码来源:JestElasticsearchTemplate.java

示例2: getIndexType

import org.springframework.data.elasticsearch.annotations.Document; //导入依赖的package包/类
/**
 * Gets Elasticsearch type
 *
 * @return Name of Elasticsearch type
 */
default String getIndexType() {
    Document document = getUType().getAnnotation(Document.class);

    if (document != null) {
        return document.type();
    } else {
        throw new GeneralException("Missing Elasticsearch @Document.type for " + getUType().getSimpleName());
    }
}
 
开发者ID:LIBCAS,项目名称:ARCLib,代码行数:15,代码来源:IndexedStore.java

示例3: getIndexName

import org.springframework.data.elasticsearch.annotations.Document; //导入依赖的package包/类
/**
 * Gets Elasticsearch index
 *
 * @return Name of Elasticsearch index
 */
default String getIndexName() {
    Document document = getUType().getAnnotation(Document.class);

    if (document != null) {
        return document.indexName();
    } else {
        throw new GeneralException("Missing Elasticsearch @Document.indexName for " + getUType().getSimpleName());
    }
}
 
开发者ID:LIBCAS,项目名称:ARCLib,代码行数:15,代码来源:IndexedStore.java

示例4: setPersistentEntityId

import org.springframework.data.elasticsearch.annotations.Document; //导入依赖的package包/类
private <T> void setPersistentEntityId(T result, String id, Class<T> clazz) {

		if (mappingContext != null && clazz.isAnnotationPresent(Document.class)) {

			ElasticsearchPersistentEntity<?> persistentEntity = mappingContext.getPersistentEntity(clazz);
			PersistentProperty<?> idProperty = persistentEntity.getIdProperty();
			
			// Only deal with String because ES generated Ids are strings !
			if (idProperty != null && idProperty.getType().isAssignableFrom(String.class)) {
				persistentEntity.getPropertyAccessor(result).setProperty(idProperty, id);
			}
		}
	}
 
开发者ID:uckefu,项目名称:uckefu,代码行数:14,代码来源:UKResultMapper.java

示例5: isDocument

import org.springframework.data.elasticsearch.annotations.Document; //导入依赖的package包/类
@SuppressWarnings("unchecked")
private boolean isDocument(Class clazz) {
	return clazz.isAnnotationPresent(Document.class);
}
 
开发者ID:VanRoy,项目名称:spring-data-jest,代码行数:5,代码来源:JestElasticsearchTemplate.java


注:本文中的org.springframework.data.elasticsearch.annotations.Document类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。