Stream.java
import io.reactivex.*;
public class Stream {
public static void main(String args[])
{
Observable.just("Howdy!").subscribe(System.out::println);
}
}
的build.gradle:
group 'com.sakhunzai'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
}
dependencies {
compile 'io.reactivex.rxjava2:rxjava:2.0.5'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
例外:
Exception in thread "main" java.lang.NoClassDefFoundError: org/reactivestreams/Publisher
....
Caused by: java.lang.ClassNotFoundException: org.reactivestreams.Publisher
我正在关注第6页的tutorial,除了我决定使用gradle而不是maven
修改
gradle和Intellij IDEA可能存在一些问题
修复了以下问题: settings.gradle:
rootProject.name = 'JavaRx'
include "buildSrc"
答案 0 :(得分:6)
该异常表示类 org.reactivestreams.Publisher 在运行时不可用。所以它在类路径中丢失了。您可以通过在gradle中添加dependency-reference来添加到类路径中。
根据您使用的版本,它应如下所示:
dependencies {
compile group: 'org.reactivestreams', name: 'reactive-streams', version: '1.0.0'
...<the other depandancies>...
}
答案 1 :(得分:1)
我使用 org.springframework.test.web.reactive.server.WebTestClient 遇到了这个异常,因此使用spring-boot可以轻松修复,只需将此依赖项添加到pom.xml中(对于maven项目):
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
答案 2 :(得分:0)
在gradle中将反应流的版本强制为1.0.0适用于我。
compile("org.reactivestreams:reactive-streams:1.0.0"){
force = true
}