是否有任何方法可以让IntelliJ IDEA识别Java项目中的Dagger 2生成的类?

问题描述 投票:16回答:6

上下文

我已经在java中启动了一个个人项目,使用Gradle作为构建系统,我想使用Dagger 2作为DI。这样做的主要原因是习惯了该库,并能够在更大的项目中轻松使用它。

我试过了什么

我设法让Google sample在IntelliJ IDEA上运行

问题

IntelliJ IDEA一直告诉我它无法解析生成的类(在本例中为DaggerCoffeeApp_Coffee)。不知道编写的代码是否正确(特别是在学习使用Dagger 2时),这有点烦人。

所有java类都与Google sample相同。这是我的build.gradle文件:

apply plugin: 'java'

repositories {
    mavenCentral()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'

    compile 'com.google.dagger:dagger:2.0.1'
    compile 'com.google.dagger:dagger-compiler:2.0.1'
}

是否有任何方法可以使IntelliJ IDEA将DaggerCoffeeApp_Coffee识别为生成的类(因此可以通过`ctrl + left click实现它的实现)?

java intellij-idea gradle dagger-2
6个回答
16
投票

最后我做到了!

我不得不添加aptidea插件所以现在我的build.gradle文件看起来像这样:

buildscript {
    repositories {
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }
    dependencies {
        classpath "net.ltgt.gradle:gradle-apt-plugin:0.4"
    }
}

apply plugin: "net.ltgt.apt"
apply plugin: 'java'
apply plugin: 'idea'

repositories {
    mavenCentral()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'

    compile 'com.google.dagger:dagger:2.0.1'
    apt 'com.google.dagger:dagger-compiler:2.0.1'
}

12
投票

我发现最简单的方法:

  1. 添加idea插件并添加Dagger2依赖,如下所示: plugins { id "net.ltgt.apt" version "0.10" } apply plugin: 'java' apply plugin: 'idea' sourceCompatibility = 1.8 repositories { mavenCentral() } dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' compile 'com.google.dagger:dagger:2.11' apt 'com.google.dagger:dagger-compiler:2.11' }
  2. 为IntelliJ启用Annotation Processing:转到Settings并搜索Annotation Processors,选中启用注释处理,如下图所示:

enter image description here


5
投票

您必须在IntelliJ中手动启用注释处理。

来自:设置 - >构建,执行,部署 - >编译器 - >注释处理器 - >启用注释处理并从项目类路径获取处理器

然后重建项目,您将在项目中找到生成的类。

请注意,我在(java)android项目中使用了此解决方案。


4
投票

我正在使用IntelliJ IDEA的版本2017.3.30.14插件的版本net.ltgt.apt和Dagger的版本2.14.1,以及在idea文件中应用build.gradle插件(如在Pelocho的answer中)我发现我还必须告诉IntelliJ它可以在哪里找到Dagger生成的来源,如下:

apply plugin: 'idea'
idea {
    module {
        sourceDirs += file("$buildDir/generated/source/apt/main")
        testSourceDirs += file("$buildDir/generated/source/apt/test")
    }
}

2
投票

这是适用于我的解决方案:

文件 - >项目结构 - >(在模块列表下选择项目) - >打开“依赖项”选项卡

然后,单击绿色的“+”符号,选择“JAR或目录”并选择“build / classes / main”文件夹。

另一种解决方案是使用build.gradle中的“dependencies”块将文件夹与构建类文件链接:

https://stackoverflow.com/a/22769015/5761849


1
投票

这是我必须要做的才能让Idea与Dagger2和gradle一起工作。

  1. 打开注释处理,如上面的答案所示。
  2. 将以下内容添加到build.gradle文件中,以便Idea将生成的类视为源。 sourceDirs += file("$projectDir/out/production/classes/generated/")

这是我的build.gradle的完整列表

plugins {
    id 'java'
    id 'idea'
    id "net.ltgt.apt" version "0.10"
}

idea {
    module {
        sourceDirs += file("$projectDir/out/production/classes/generated/")
    }
}

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.google.dagger:dagger:2.16'
    apt 'com.google.dagger:dagger-compiler:2.16'
}

sourceCompatibility = 1.8

此外,我必须添加以下gradle任务(到我的build.gradle文件)以清除我的out目录。当我移动一些文件并且Dagger2重新生成源文件时,out目录没有被清除:(。我还在运行配置中包含此任务,以便在重建项目之前触发它。

task clearOutFolder(type: Delete) {
    delete 'out'
}

0
投票

使用IntelliJ IDEA 2019.1和Gradle 5.4.1,这似乎就足够了:

plugins {
    id 'java'
}

version '1.0-SNAPSHOT'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

dependencies {
    testImplementation group: 'junit', name: 'junit', version: '4.12'

    implementation 'com.google.dagger:dagger:2.23.1'
    annotationProcessor 'com.google.dagger:dagger-compiler:2.23.1'
}

不过,我不知道这个解决方案适用的最小版本。

© www.soinside.com 2019 - 2024. All rights reserved.