|
|
FAQ汇萃
>> Tomcat
>> 为什么总出现java.lang.ClassNotFoundException: org/apache/tomcat/service/http/HttpConnection
由 webmaster 发布于: 2001-01-30 10:10
It's probably due to a bug in your JVM's Classloader. Try upgrading to JDK 1.2.2 or 1.3.
I had the same problem- with jdk1.2.1. I accidently over come it by repeating the param code again in server.xml... I reproduce the tags here
<Connector org.apache.tomcat.service.SimpleTcpConnector">
<Parameter name="handler" value="org.apache.tomcat.service.http.HttpConnectionHandler"/>
<Parameter name="handler" value="org.apache.tomcat.service.http.HttpConnectionHandler"/>
<Parameter name="port" value="8080"/>
</Connector>
|
资料来源: JSP001.com
|