我在我的应用程序中使用了elasticsearch和spring。对于每种索引类型,我都有一个文档映射。使用@Document
注释我已指定索引的indexName
和type
。例如:@Document(indexName = "myproject", type = "user")
。但是对于编写单元测试,我想创建具有不同indexName的索引。因此,我希望从属性文件中读取indexName。如何在春天这样做?
答案 0 :(得分:0)
您只需使用 SPeL 即可解决此问题。它允许您设置 Spring 将在编译时解析的表达式。因此允许在编译期间处理注释。
@Document(collection = "#{@environment.getProperty('index.access-log')}")
public class AccessLog{
...
}
Spring 5.x 之前:
请注意,SPeL 中没有 @
。
@Document(collection = "#{environment.getProperty('index.access-log')}")
public class AccessLog{
...
}
我还发现 Spring 还支持更简单的表达式 @Document(collection = "${index.access-log}")
,但我对此产生了不同的结果。
按上述方式设置注释后,您可以使用其中之一
application.properties
index.access-log=index_access
或 application.yaml
index :
access : index_access
答案 1 :(得分:-1)
只需使用单元测试中的ElasticSearchTemplate创建具有不同名称的索引,然后使用方法“index”或“bulkIndex”将文档索引到刚刚创建的新索引中。
esTemplate.createIndex(newIndexName, loadfromFromFile(settingsFileName));
esTemplate.putMapping(newIndexName, "user", loadfromFromFile(userMappingFileName));
List<IndexQuery> indexes = users.parallelStream().map(user -> {
IndexQuery index = new IndexQuery();
index.setIndexName(newIndexName);
index.setType("user");
index.setObject(user);
index.setId(String.valueOf(user.getId()));
return index;
}).collect(Collectors.toList());
esTemplate.bulkIndex(indexes);
//Load file from src/java/resources or /src/test/resources
public String loadfromFromFile(String fileName) throws IllegalStateException {
StringBuilder buffer = new StringBuilder(2048);
try {
InputStream is = getClass().getResourceAsStream(fileName);
LineNumberReader reader = new LineNumberReader(new InputStreamReader(is));
while (reader.ready()) {
buffer.append(reader.readLine());
buffer.append(' ');
}
} catch (Exception e) {
throw new IllegalStateException("couldn't load file " + fileName, e);
}
return buffer.toString();
}
这应该适合我的工作。相同的情况。