twitter / hbc

A Java HTTP client for consuming Twitter's realtime Streaming API
https://developer.twitter.com/en/docs/tweets/filter-realtime/overview
Apache License 2.0
962 stars 373 forks source link

ClientBuilder error caused by deprecation of SchemeRegistryFactory #182

Closed jzbyers closed 6 years ago

jzbyers commented 7 years ago

Trying to initialize a ClientBuilder results in the following error:

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/http/impl/conn/SchemeRegistryFactory
    at com.twitter.hbc.ClientBuilder.<init>(ClientBuilder.java:102)
    at twitter.Main.streamTwitterData(Main.java:101)
    at twitter.Main.main(Main.java:75)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
Caused by: java.lang.ClassNotFoundException: org.apache.http.impl.conn.SchemeRegistryFactory
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 8 more

org/apache/http/impl/conn/SchemeRegistryFactory has been deprecated and HttpClientBuilder looks to be the replacement.