English 中文(简体)
Tomcat 7 上的 Sorr 设置( 与日圆一起)
原标题:Solr setup on Tomcat 7 (with Eclipse)
  • 时间:2012-05-24 08:47:04
  •  标签:
  • java
  • tomcat

我已经在窗口中设置了拖网7号上的索尔, 所以当我手动启动拖网服务器时, 当我撞上拖网时, 它在我的浏览器中搜索得非常好。

当我用主方法写出java类时,结果会被取出并显示在控制台上。

public class Code{
public static void main(String[] args) throws MalformedURLException, SolrServerException {
SolrServer solr = new CommonsHttpSolrServer("http://192.168.16.221:8080/solr");
ModifiableSolrParams params = new ModifiableSolrParams();
params.set("q", "subhash");

System.out.println("response = " + params);
QueryResponse response = solr.query(params);
System.out.println("response = " + response);
}
}

但当我在方法中使用相同的代码, 并使用对象来调用此方法时, 这个错误会被显示

java.lang.NoClassDefFoundError: org/apache/solr/client/solrj/SolrServerException

急切地等待你的答复。

问题回答

您需要使用“ 类路径” 命令行选项来“ java ” 来告诉它您需要的所有图书馆都住在哪里。 默认的 CLAS SPATH 只包括系统类等 。

所以,如果你在目前的目录中有您的代码. class 文件, 与 solr-x.y.z.jar一起, 那么你需要做这样的事情:

$ java -classpath .:solr-x-y-z.jar Code

如果索尔没有一帮自己的依附关系 我会很惊讶 也就是说你需要把一帮JAR文件 纳入你的 - 类同于上方的流派中

这是爪哇101。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签