我正在使用Spring Data Solr,我有以下Solr文档模型类,并为此类提供了相应的SolrCrudRepository
@SolrDocument(collection = "oldCollectionName")
public class TestDocument {
@Id
@Indexed(name = "id", type = "string")
private String id;
@Field(value = "name")
private String name;
@Field(value = "externalid")
private Integer externalId;
}
我正在尝试修改注释' @SolrDocument(collection =" oldCollectionName")'在运行时。
我有一个Service,它有以下方法使用存储库和模型类
查找所有文档public List<TestDocument> getDocumentsByName(String name){
String newSolrDocument = getModifiedSolrCollectionName();
alterAnnotationValue(TestDocument.class, SolrDocument.class, newSolrDocument);
SolrDocument solrDocument = TestDocument.class.getAnnotation(SolrDocument.class);
LOGGER.info("Dynamically set SolrDocument Annotaation: "+solrDocument.collection());
return testDocumentRepository.findByName(name);
}
更改注释的代码如下所示
public void alterAnnotationValue(Class<?> targetClass, Class<? extends Annotation> targetAnnotation, Annotation targetValue) {
try {
Method method = Class.class.getDeclaredMethod(ANNOTATION_METHOD, null);
method.setAccessible(true);
Object annotationData = method.invoke(targetClass);
Field annotations = annotationData.getClass().getDeclaredField(ANNOTATIONS);
annotations.setAccessible(true);
Map<Class<? extends Annotation>, Annotation> map = (Map<Class<? extends Annotation>, Annotation>) annotations.get(annotationData);
map.put(targetAnnotation, targetValue);
} catch (Exception e) {
e.printStackTrace();
}
}
使用这个我正确地将newDocumentName设置到注释图中,但在调用testDocumentRepository的find方法时查找文档。旧的集合名称正在被选中。
我是否必须为此工作做更多的事情?或者我错过了什么?
作为参考,我遵循了以下教程http://www.baeldung.com/java-reflection-change-annotation-params
答案 0 :(得分:3)
为什么不写一个自定义SolrRepository
来解决这个问题?
您可以在自定义存储库中注入SolrTemplate
,允许您为查询指定集合,如下所示:
public class TestDocumentRepositoryImpl implements TestDocumentRepository {
private SolrOperations solrTemplate;
...
public CustomSolrRepositoryImpl(SolrOperations solrTemplate) {
super();
this.solrTemplate = solrTemplate;
}
@Override
public TestDocument findOneSpecifyingCollection(String collection, String id) {
return solrTemplate.getById(collection, id, TestDocument.class);
}
}
对于您喜欢的存储库操作,您可以这样做。
如果标准的Spring JPA存储库不能满足他们的需求,人们通常需要自己的实现。但是,如果需要,您仍然可以mix your own使用标准SolrCrudRepository
。
See this来自Spring的一个例子。