refactoring: renamed the SolrServlet to SolrSelectServlet for better

naming of more Solr Servlets
pull/1/head
Michael Peter Christen 11 years ago
parent dc06e407ce
commit 4cb7e2a2ca

@ -41,7 +41,7 @@ import javax.net.ssl.SSLContext;
import net.yacy.cora.util.ConcurrentLog;
import net.yacy.http.servlets.GSAsearchServlet;
import net.yacy.http.servlets.SolrServlet;
import net.yacy.http.servlets.SolrSelectServlet;
import net.yacy.http.servlets.YaCyDefaultServlet;
import net.yacy.http.servlets.YaCyProxyServlet;
import net.yacy.search.Switchboard;
@ -134,9 +134,9 @@ public class Jetty8HttpServerImpl implements YaCyHttpServer {
htrootContext.addServlet(sholder,"/*");
//add SolrServlet
htrootContext.addServlet(SolrServlet.class, "/solr/select"); // uses the default core, collection1
htrootContext.addServlet(SolrServlet.class, "/solr/collection1/select"); // the same servlet, identifies the collection1 core using the path
htrootContext.addServlet(SolrServlet.class, "/solr/webgraph/select"); // the same servlet, identifies the webgraph core using the path
htrootContext.addServlet(SolrSelectServlet.class, "/solr/select"); // uses the default core, collection1
htrootContext.addServlet(SolrSelectServlet.class, "/solr/collection1/select"); // the same servlet, identifies the collection1 core using the path
htrootContext.addServlet(SolrSelectServlet.class, "/solr/webgraph/select"); // the same servlet, identifies the webgraph core using the path
// add proxy?url= servlet
htrootContext.addServlet(YaCyProxyServlet.class,"/proxy.html");

@ -80,7 +80,7 @@ import org.apache.solr.util.FastWriter;
* this is now done in Solr 4.x.x with org.apache.solr.servlet.SolrDispatchFilter
* implemented as servlet (we don't use multicore)
*/
public class SolrServlet extends HttpServlet {
public class SolrSelectServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
public final static Map<String, QueryResponseWriter> RESPONSE_WRITER = new HashMap<String, QueryResponseWriter>();
Loading…
Cancel
Save