org.springframework.data.elasticsearch.core.DefaultEntityMapper Java Examples

The following examples show how to use org.springframework.data.elasticsearch.core.DefaultEntityMapper. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: XiaoEUKResultMapper.java    From youkefu with Apache License 2.0 4 votes vote down vote up
public XiaoEUKResultMapper() {
	super(new DefaultEntityMapper());
}
 
Example #2
Source File: XiaoEUKResultMapper.java    From youkefu with Apache License 2.0 4 votes vote down vote up
public XiaoEUKResultMapper(MappingContext<? extends ElasticsearchPersistentEntity<?>, ElasticsearchPersistentProperty> mappingContext) {
	super(new DefaultEntityMapper());
	this.mappingContext = mappingContext;
}
 
Example #3
Source File: UKResultMapper.java    From youkefu with Apache License 2.0 4 votes vote down vote up
public UKResultMapper() {
	super(new DefaultEntityMapper());
}
 
Example #4
Source File: UKResultMapper.java    From youkefu with Apache License 2.0 4 votes vote down vote up
public UKResultMapper(MappingContext<? extends ElasticsearchPersistentEntity<?>, ElasticsearchPersistentProperty> mappingContext) {
	super(new DefaultEntityMapper());
	this.mappingContext = mappingContext;
}
 
Example #5
Source File: ResultMapperExt.java    From roncoo-education with MIT License 4 votes vote down vote up
public ResultMapperExt() {
	super(new DefaultEntityMapper());
}
 
Example #6
Source File: ResultMapperExt.java    From roncoo-education with MIT License 4 votes vote down vote up
public ResultMapperExt(MappingContext<? extends ElasticsearchPersistentEntity<?>, ElasticsearchPersistentProperty> mappingContext) {
	super(new DefaultEntityMapper());
	this.mappingContext = mappingContext;
}