[ 
https://issues.apache.org/jira/browse/SOLR-149?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ryan McKinley updated SOLR-149:
-------------------------------

    Attachment: SOLR-149-embeddable.patch

adding the path to the request context so handlers can use it and we can make a 
nice debug string

> Make solr more embeddable
> -------------------------
>
>                 Key: SOLR-149
>                 URL: https://issues.apache.org/jira/browse/SOLR-149
>             Project: Solr
>          Issue Type: Improvement
>            Reporter: Ryan McKinley
>            Priority: Minor
>         Attachments: SOLR-149-embeddable.patch, SOLR-149-embeddable.patch, 
> SOLR-149-embeddable.patch
>
>
> With a few simple changes, solr can be an easily embedded in a custom jetty 
> app.
> With this patch, one can run solr from the jar file using:
>   server = new Server( port );    
>   
>   // Initalize home (without JNDI)
>   Config.setInstanceDir(home);
>   
>   // Initalize the servlets
>   Context root = new Context( server, "/", Context.SESSIONS );
>   root.addServlet( SolrServlet.class, "/select" );
>   root.addServlet( SolrUpdateServlet.class, "/update" );
>   root.addFilter( SolrDispatchFilter.class, "*", Handler.REQUEST );

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to