在使用 SOLRJ 时,我想知道如何使用 SOLR 查询语法将 SolrQuery 对象转换为其 URL 表示。我尝试使用 .toString() 方法,但它没有返回正确的查询表示。还有其他方法吗?
问问题
1475 次
2 回答
8
对于这个问题,我推荐ClientUtils.toQueryString 。
@Test
public void solrQueryToURL() {
SolrQuery tmpQuery = new SolrQuery("some query");
Assert.assertEquals("?q=some+query", ClientUtils.toQueryString(tmpQuery, false));
}
在HttpSolrServer的源代码中,您可以看到 Solrj 代码本身为此使用了它。
public NamedList<Object> request(final SolrRequest request, final ResponseParser processor) throws SolrServerException, IOException {
// ... other code left out
if( SolrRequest.METHOD.GET == request.getMethod() ) {
if( streams != null ) {
throw new SolrException( SolrException.ErrorCode.BAD_REQUEST, "GET can't send streams!" );
}
method = new HttpGet( baseUrl + path + ClientUtils.toQueryString( params, false ) );
// ... other code left out
}
于 2013-03-12T09:36:21.597 回答
1
SolrJ(测试版本 6.6.0 )它是:
@Test
public void solrQueryToURL() {
SolrQuery query = new SolrQuery("query");
Assert.assertEquals("?q=query", query.toQueryString());
}
于 2017-08-03T16:16:26.343 回答