Dagger2 第一篇 ReadMe

Dagger 2 ReadMe

![Maven Central][mavenbadge-svg]

A fast dependency injector for Android and Java.

一个为Android和Java开发的高效的依赖注入框架

About Google's Fork

Dagger 2 is a compile-time evolution approach to dependency injection.
Taking the approach started in Dagger 1.x to its ultimate conclusion,
Dagger 2.x eliminates all reflection, and improves code clarity by
removing the traditional ObjectGraph/Injector in favor of user-specified
@Component interfaces.

Dagger 2 是一个为了实现依赖注入的编译时改进. 从Dagger1.x到最后结果, Dagger 2.x去除了所有的反射, 通过以用户指定的@Component接口取代传统的[对象图片/注入]提高了代码的清晰度.

This github project represents the Dagger 2 development stream. The earlier
project page (Square, Inc's repository) represents the earlier 1.0
development stream. Both versions have benefitted from strong involvement from
Square, Google, and other contributors.

这个gitHub 项目代表了Dagger2的开发流, 早一点的项目代表的是早期1.0的开发流. 2个版本都受益于Square, Google和其它贡献者的深度参与.

Dagger is currently in active development, primarily internally at Google,
with regular pushes to the open-source community. Snapshot releases are
auto-deployed to sonatype's central maven repository on every clean build with
the version HEAD-SNAPSHOT.

Dagger现在正处在积极发展中(主要在于Google内部), 经常被推送到开源社区. 在'HEAD-SANPSHOT'版本的每次构建操作会自动部署发布的快照到sonatype的中央maven仓库.

Dagger 2's main documentation website can be found here.

Documentation

You can find the dagger documentation here which has extended usage
instructions and other useful information. Substantial usage information can be
found in the API documentation.

你能在这里找到dagger文档这个网站有更多的使用文档和其它有用的信息.
重要的使用信息能在这里找到 API documentation

You can also learn more from the original proposal,
this talk by Greg Kick, and on the dagger-discuss@googlegroups.com
mailing list.

你也能从 the original proposalthis talk by Greg Kick,这里学到更多, 另外有讨论邮件 dagger-discuss@googlegroups.com

Installation(安装)

Bazel

If you build with bazel, follow the bazel documentation for referencing
external projects
to include Dagger in your build.

如果你使用bazel构建, 跟随 bazel documentation for referencing
external projects
来集成Dagger到你的构建中

Given the following WORKSPACE definition, you can reference dagger via
@com_google_dagger//:dagger_with_compiler in your deps.

http_archive(
    name = "com_google_dagger"
    urls = ["https://github.com/google/dagger/archive/dagger-<version>.zip"],
)

Other build systems(其它构建系统)

You will need to include the dagger-2.x.jar in your application's runtime.
In order to activate code generation and generate implementations to manage
your graph you will need to include dagger-compiler-2.x.jar in your build
at compile time.

你需要在你应用的运行时集成 dagger-2.x.jar. 为了启动代码生成和管理图表的实现, 你需要在编译时集成dagger-compiler-2.x.jar到你的构建系统中.

Maven

In a Maven project, include the dagger artifact in the dependencies section
of your pom.xml and the dagger-compiler artifact as an
annotationProcessorPaths value of the maven-compiler-plugin:

在Maven项目中, 在pom.xml中引用dagger依赖, 并且把dagger-compiler artifact 作为maven-compiler-plugin依赖的annotationProcessorPaths

<dependencies>
  <dependency>
    <groupId>com.google.dagger</groupId>
    <artifactId>dagger</artifactId>
    <version>2.x</version>
  </dependency>
</dependencies>
<build>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>3.6.1</version>
      <configuration>
        <annotationProcessorPaths>
          <path>
            <groupId>com.google.dagger</groupId>
            <artifactId>dagger-compiler</artifactId>
            <version>2.x</version>
          </path>
        </annotationProcessorPaths>
      </configuration>
    </plugin>
  </plugins>
</build>

If you are using a version of the maven-compiler-plugin lower than 3.5, add
the dagger-compiler artifact with the provided scope:

如果你使用低于 3.5maven-compiler-plugin, 给dagger-compiler artifact配上provided scope

<dependencies>
  <dependency>
    <groupId>com.google.dagger</groupId>
    <artifactId>dagger</artifactId>
    <version>2.x</version>
  </dependency>
  <dependency>
    <groupId>com.google.dagger</groupId>
    <artifactId>dagger-compiler</artifactId>
    <version>2.x</version>
    <scope>provided</scope>
  </dependency>
</dependencies>

If you use the beta dagger-producers extension (which supplies
parallelizable execution graphs), then add this to your maven configuration:

如果你使用试用版的dagger-producers扩展配置(which supplies
parallelizable execution graphs) 增加以下配置到maven中.

<dependencies>
  <dependency>
    <groupId>com.google.dagger</groupId>
    <artifactId>dagger-producers</artifactId>
    <version>2.x</version>
  </dependency>
</dependencies>

Java Gradle

// Add plugin https://plugins.gradle.org/plugin/net.ltgt.apt
plugins {
  id "net.ltgt.apt" version "0.10"
}

// Add Dagger dependencies
dependencies {
  compile 'com.google.dagger:dagger:2.x'
  apt 'com.google.dagger:dagger-compiler:2.x'
}

Android Gradle

// Add Dagger dependencies
dependencies {
  compile 'com.google.dagger:dagger:2.x'
  annotationProcessor 'com.google.dagger:dagger-compiler:2.x'
}

If you're using classes in dagger.android you'll also want to include:

如果你使用 dagger.android 中的类, 你需要增加以下引用

compile 'com.google.dagger:dagger-android:2.x'
compile 'com.google.dagger:dagger-android-support:2.x' // if you use the support libraries
annotationProcessor 'com.google.dagger:dagger-android-processor:2.x'

If you're using a version of the Android gradle plugin below 2.2, see
https://bitbucket.org/hvisser/android-apt.

如果你使用低于 2.2版本的gradle插件, 查看https://bitbucket.org/hvisser/android-apt.

If you're using the Android Databinding library, you may want to
increase the number of errors that javac will print. When Dagger prints an
error, databinding compilation will halt and sometimes print more than 100
errors, which is the default amount for javac. For more information, see
Issue 306.

如果你正使用Android Databinding library, 你可能想增加javac打印出的errors的数量. 当Dagger打印错误时, 数据绑定编译会暂停并打印超100(javac的默认总数)的错误信息. 更多信息请查看Issue 306

gradle.projectsEvaluated {
  tasks.withType(JavaCompile) {
    options.compilerArgs << "-Xmaxerrs" << "500" // or whatever number you want
  }
}

Download

If you do not use maven, gradle, ivy, or other build systems that consume
maven-style binary artifacts, they can be downloaded directly via the
Maven Central Repository.

Developer snapshots are available from Sonatype's
snapshot repository, and are built on a clean build of
the GitHub project's master branch.

Building Dagger

Dagger is built with bazel. The tests can be run with bazel test //....
util/install-local-snapshot.sh will build all of the Dagger libraries and
install a copy in your local maven repository with the version LOCAL-SNAPSHOT.

License

Copyright 2012 The Dagger Authors

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

单词

  • evolution演变; 进化; 发展
  • approach to接近
    ultimate conclusion 最后结果
    eliminates 消除
    reflection 反射
    clarity 清晰度.
    ObjectGraph/Injector
    in favor of 以取代
    user-specified 用户指定的.
    involvement 参与
    Substantial 重要的
    artifact: 人工制品.

UserGuide :
https://google.github.io/dagger/users-guide

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 194,524评论 5 460
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 81,869评论 2 371
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 141,813评论 0 320
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,210评论 1 263
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,085评论 4 355
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,117评论 1 272
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,533评论 3 381
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,219评论 0 253
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,487评论 1 290
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,582评论 2 309
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,362评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,218评论 3 312
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,589评论 3 299
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 28,899评论 0 17
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,176评论 1 250
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,503评论 2 341
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,707评论 2 335

推荐阅读更多精彩内容