SOLRJを使用しているときに、SolrQueryオブジェクトをSOLRクエリ構文を使用してそのURL表現に変換する方法を知りたいです。.toString()メソッドを使用しようとしましたが、適切なクエリ表現が返されません。それを行う他の方法はありますか?
質問する
1475 次
2 に答える
8
I recommend ClientUtils.toQueryString for this matter.
@Test
public void solrQueryToURL() {
SolrQuery tmpQuery = new SolrQuery("some query");
Assert.assertEquals("?q=some+query", ClientUtils.toQueryString(tmpQuery, false));
}
Within the source code of HttpSolrServer you can see that this is used by the Solrj code itself for this reason.
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 に答える