把solr导入到Eclipse中进行发布
1、下载解压,请看http://13shu.iteye.com/admin/blogs/729135
2、把solr.war用WINRAR打开,把里面的文件拖拽出来
3、在Eclipse新建立web工程,把从solr.war拖拽出来的文件拷贝到工程的WebRoot下
4、?把解压出来的d:\apache-solr-1.4.0\example\solr文件夹拷贝到WebRoot下
5、在web.xml中增加
public class Solrlistener implements ServletContextListener{ /* (non-Javadoc) * @see javax.servlet.ServletContextListener#contextDestroyed(javax.servlet.ServletContextEvent) */ public void contextDestroyed(ServletContextEvent sce) { // TODO Auto-generated method stub } /* (non-Javadoc) * @see javax.servlet.ServletContextListener#contextInitialized(javax.servlet.ServletContextEvent) */ public void contextInitialized(ServletContextEvent sce) { String path = this.getClass().getResource("/").getPath(); int lastNum = path.lastIndexOf("WEB-INF/classes/"); path = path.substring(0, lastNum) + "/solr"; System.setProperty("solr.solr.home", path); }}
?
?
?
总结:其实我们做这么多的操作都是为了设置solr.solr.home,把它指定到d:\apache-solr-1.4.0\example\solr文件夹下
还有2中方式可以解决solr.solr.home这个问题,网上很多,可以参考