2

当我在我的 pom 文件中使用以下依赖项时:

<properties>
    <rxkotlinfx.version>2.2.0</rxkotlinfx.version>
    <rxkotlin.version>2.1.0</rxkotlin.version>
    <kotlin.version>1.1.51</kotlin.version>
    <tornadofx.version>1.7.12</tornadofx.version>
</properties>

<dependencies>
    <dependency>
        <groupId>com.github.thomasnield</groupId>
        <artifactId>rxkotlinfx</artifactId>
        <version>${rxkotlinfx.version}</version>
    </dependency>
    <dependency>
        <groupId>io.reactivex.rxjava2</groupId>
        <artifactId>rxkotlin</artifactId>
        <version>${rxkotlin.version}</version>
    </dependency>
    <dependency>
        <groupId>no.tornado</groupId>
        <artifactId>tornadofx</artifactId>
        <version>${tornadofx.version}</version>
    </dependency>
    <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-stdlib</artifactId>
        <version>${kotlin.version}</version>
    </dependency>
    <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-test</artifactId>
        <version>${kotlin.version}</version>
        <scope>test</scope>
    </dependency>
</dependencies>

并运行以下代码:

fun main(args: Array<String>) {
    val source = listOf("A", "B", "C").toObservable()
            .filter { it == "B" }
            .subscribeBy(
                    onNext = { println(it) }
            )
}

我收到以下错误:

Error:(37, 40) Kotlin: Cannot access class 'io.reactivex.Observable'. Check your module classpath for missing or conflicting dependencies

为什么我会收到此错误,我需要什么依赖项设置才能使用此堆栈?

4

2 回答 2

2

我发现的唯一解决方案是明确依赖:

<dependency>
    <groupId>io.reactivex.rxjava2</groupId>
    <artifactId>rxjava</artifactId>
    <version>2.1.3</version>
</dependency>
于 2017-11-09T18:07:28.773 回答
0

io.reactivex.Observable位于rxjava-2.1.3.jar库中,它是由您在 pom.xml 中声明的 2 个依赖项带来的传递依赖项:

  • com.github.thomasnield:rxkotlinfx:2.2.0

  • io.reactivex.rxjava2:rxkotlin:2.1.0

我用 gradle 尝试了你的设置(对不起,我更喜欢 gradle 而不是 maven),我使用 gradle 命令行查看冲突解决方案是什么:结果如下:

io.reactivex.rxjava2:rxjava:2.1.3 (conflict resolution)
\--- io.reactivex.rxjava2:rxjavafx:2.2.0
     \--- com.github.thomasnield:rxkotlinfx:2.2.0
          \--- compileClasspath

io.reactivex.rxjava2:rxjava:2.1.0 -> 2.1.3
\--- io.reactivex.rxjava2:rxkotlin:2.1.0
     \--- compileClasspath

io.reactivex.rxjava2:rxjavafx:2.2.0
\--- com.github.thomasnield:rxkotlinfx:2.2.0
     \--- compileClasspath

io.reactivex.rxjava2:rxkotlin:2.1.0 (selected by rule)
\--- compileClasspath

和 gradle 冲突解决选择了 v 2.1.3

我知道 gradle 中的依赖管理比 maven 更强大,但我会通过排除不需要的依赖版本来强制 maven 使用传递依赖的特定版本。

我会尝试以下方法:

<dependency>
  <groupId>io.reactivex.rxjava2</groupId>
  <artifactId>rxkotlin</artifactId>
  <version>${rxkotlin.version}</version>
  <exclusions>
    <exclusion>
      <groupId>io.reactivex.rxjava2</groupId>
      <artifactId>rxjava</artifactId>
    </exclusion>
  </exclusions>
</dependency>

或者,如果您不需要其中的某些 API,您可以删除

    <dependency>
        <groupId>com.github.thomasnield</groupId>
        <artifactId>rxkotlinfx</artifactId>
        <version>${rxkotlinfx.version}</version>
    </dependency> 
于 2017-11-08T20:29:52.807 回答