Java – thread “main”java.lang.NoClassDefFoundError : org/reactivestreams/Publisher? Exceptions in

thread “main”java.lang.NoClassDefFoundError : org/reactivestreams/Publisher? Exceptions in… here is a solution to the problem.

thread “main”java.lang.NoClassDefFoundError : org/reactivestreams/Publisher? Exceptions in

I encountered this exception while creating a hello world program. Here is the code:

import io.reactivex.Observable;
import io.reactivex.Observer;
import io.reactivex.disposables.Disposable;
import io.reactivex.schedulers.Schedulers;

/**
 * Created by veneet on 30/04/17.
 */
public class MainApp {
    public static void main(String[] args) {
         This is where the exception occurs.
        Observable<String> observable = Observable.create(e -> {
            e.onNext("Hello World!");
            e.onNext("Hello World!");
            e.onNext("Hello World!");
            e.onNext("Hello World!");
            e.onNext("Hello World!");
            e.onNext("Hello World!");

e.onComplete();
        });
        Observer<String> observer = new Observer<String>() {
            @Override
            public void onSubscribe(Disposable d) {

}

@Override
            public void onNext(String s) {
                System.out.println(s);
            }

@Override
            public void onError(Throwable e) {
                System.err.println(e.getMessage());
            }

@Override
            public void onComplete() {

}
        };
        observable.subscribeOn(Schedulers.io());
        observable.subscribe(observer);

try {
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

The build.gradle dependencies look like this:

dependencies {
    compile "io.reactivex.rxjava2:rxjava:2.1.0"
     https://mvnrepository.com/artifact/org.reactivestreams/reactive-streams
    compile group: 'org.reactivestreams', name: 'reactive-streams', version: '1.0.0.final'
    testCompile group: 'junit', name: 'junit', version: '4.12'
}

The full stacktrace looks like this (I think the first line is completely irrelevant, but put it up to guarantee):

objc[3423]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/bin/java (0x10b6dc4c0) and /Library/Java/ JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre/lib/libinstrument.dylib (0x10d0194e0). One of the two will be used. Which one is undefined.
Exception in thread "main" java.lang.NoClassDefFoundError: org/reactivestreams/Publisher
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:467)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:73)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:368)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:362)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:361)
    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)
    at MainApp.main(MainApp.java:11)
Caused by: java.lang.ClassNotFoundException: org.reactivestreams.Publisher
    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)
    ... 13 more

Solution

From the review:

You don’t have to include a dependency on Reactive-Streams, because RxJava already has a compile-time dependency on it. Otherwise, the correct version is:

compile 'org.reactivestreams:reactive-streams:1.0.0'

For test compatibility suites:

testCompile 'org.reactivestreams:reactive-streams-tck:1.0.0'

I’m guessing .final is a release bug.

Related Problems and Solutions