Dagger2基本使用2之子组件

2023-12-17 04:28

本文主要是介绍Dagger2基本使用2之子组件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

  • 一,基本使用,完成一个注入

1,创建作用域

//自定义作用域,作用域只是一个名称,随便起啥名字都可以,这里取一个全局单利的名字
@Scope
@Documented
@Retention(RUNTIME)
public @interface GlobalSingleton {
}

2,创建一个module

public interface ApiService {
}
//调用dagger的@Component注解,这个里面可以创建多个注解
@Module
public class NetModule {//作用域的范围是DaggerMainComponent.create()执行的在哪里就是那个范围@GlobalSingleton//外部引用的类无法在构造方法上增加@Inject,通过@Privides方法进行创建对象@Providespublic Retrofit provideRetrofit() {Retrofit retrofit = new Retrofit.Builder().baseUrl("http://www.baidu.com").build();Log.e("NetModule", "new Retrofit" + retrofit);return retrofit;}@GlobalSingleton//通过参数传入在Module中创建的值,这里代码执行相当于provideApiService(provideRetrofit()),调用了provideRetrofit()//方法传入参数@Providespublic ApiService provideApiService(Retrofit retrofit) {ApiService apiService = retrofit.create(ApiService.class);Log.e("NetModule", "new ApiService  retrofit " + retrofit);Log.e("NetModule", "new ApiService " + apiService);return apiService;}
}

3,创建 Component组件

//modules中有指定作用域的,Componet上必须是同一个作用域
@GlobalSingleton
//调用dagger的@Component注解,这个里面可以创建多个注解
@Component(modules = {NetModule.class})
public interface ApplicationComponent {//哪个个类需要注入,这里是MainActivity需要注入含有@Inject的类void inject(MainActivity mainActivity);}

4,初始化一个全局Component

public class DaggerApplication  extends Application {//这里可以直接定义为static,应为Application生命周期是整个app,这里是在Application创建,告诉Dagger的作用域//为整个appprivate static final ApplicationComponent applicationComponent=DaggerApplicationComponent.create();public static ApplicationComponent getApplicationComponent() {return applicationComponent;}
}

5,注入实例化类

public class MainActivity extends AppCompatActivity {@InjectRetrofit retrofit;@InjectApiService apiService;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Log.e("MainActivity", "new onCreate");//dagger会自动生成一个Dagger+创建的接口名称的类,初始化注入器DaggerApplication. getApplicationComponent().inject(this);startActivity(new Intent(this,MainActivity2.class));}
}
  •  二,实现子组件,完成子组件局部单利

按照上面的写法,装载到Component上module只能是全局单利,想要注入的类是在是局部单利,就要使用到子组件才行

1,定义子组件作用域

//创建一个子组件的作用域
@Scope
@Documented
@Retention(RUNTIME)
public @interface LocalSingleton {
}

2,创建子组件module

public class User {public User() {Log.e("User", "new User()");}
}
@Module
public class UserModule {//使用局部单利必须要有作用域@LocalSingleton@Providespublic User provideUser(){return new User();}
}

3,创建字组件component,并装载父组件到子组件上

//父组件有作用域,子组件必须有作用域
//dependencies = ApplicationComponent.class这里将父组件装载到子组件上,相当于继承了
//父组件的功能
@LocalSingleton
@Component(modules = UserModule.class, dependencies = ApplicationComponent.class)
public interface UserComponent {//void inject(MainActivity2 mainActivity2);
}

4,父组件显示声明

这种写法子组件需要用到父组件中提供的provide注入实例,就需要显示在父组件中显示声明才行

//modules中有指定作用域的,Componet上必须是同一个作用域
@GlobalSingleton
//调用dagger的@Component注解,这个里面可以创建多个注解
@Component(modules = {NetModule.class})
public interface ApplicationComponent {//哪个个类需要注入,这里是MainActivity需要注入含有@Inject的类void inject(MainActivity mainActivity);//子组件需要用到父组件的类,必须在父组件中申明Retrofit retrofit();
}

5,注入实例到类中

public class MainActivity2 extends AppCompatActivity {@InjectRetrofit retrofit;@InjectUser user;@InjectUser user2;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main2);Log.e("MainActivity2", "new onCreate MainActivity2");//UserComponent实例只能通过build获取到UserComponent userComponent=  DaggerUserComponent.builder().applicationComponent(DaggerApplication.getApplicationComponent()).build();//开始注入实例userComponent.inject(this);}
}

 运行代码

从打印中可以看到,子组件注入的实例类只创建了一个,也注入了父组件的实例类

三,@Subcomponent注解实现组件依赖

修改第二条中一些类

修改UserComponent名字为UserSubComponent,修改内容如下

@LocalSingleton
//创建子组件的注解
@Subcomponent(modules = UserModule.class)
public interface UserSubComponent {//创建Factory,后续在父组件上调用,告诉父组件这个组件为子组件@Subcomponent.Factoryinterface Factory{UserSubComponent create();}void inject(MainActivity2 mainActivity2);
}

修改ApplicationComponent

//modules中有指定作用域的,Componet上必须是同一个作用域
@GlobalSingleton
//调用dagger的@Component注解,这个里面可以创建多个注解
@Component(modules = {NetModule.class})
public interface ApplicationComponent {//哪个个类需要注入,这里是MainActivity需要注入含有@Inject的类void inject(MainActivity mainActivity);//绑定子组件到父组件上UserSubComponent.Factory userSubComponent();//Subcomponent创建的子组件使用父组件实例类,不需要显示声明
//    Retrofit retrofit();}

修改注入类代码

public class MainActivity2 extends AppCompatActivity {@InjectRetrofit retrofit;@InjectUser user;@InjectUser user2;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main2);Log.e("MainActivity2", "new onCreate MainActivity2");//UserSubComponent实例获取UserSubComponent userSubComponent = DaggerApplication.getApplicationComponent().userSubComponent().create();//开始注入实例userSubComponent.inject(this);}
}

运行代码

+

代码打印和之前的一样,这就是用Subcomponent实现

这篇关于Dagger2基本使用2之子组件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/503054

相关文章

Java中使用Java Mail实现邮件服务功能示例

《Java中使用JavaMail实现邮件服务功能示例》:本文主要介绍Java中使用JavaMail实现邮件服务功能的相关资料,文章还提供了一个发送邮件的示例代码,包括创建参数类、邮件类和执行结... 目录前言一、历史背景二编程、pom依赖三、API说明(一)Session (会话)(二)Message编程客

C++中使用vector存储并遍历数据的基本步骤

《C++中使用vector存储并遍历数据的基本步骤》C++标准模板库(STL)提供了多种容器类型,包括顺序容器、关联容器、无序关联容器和容器适配器,每种容器都有其特定的用途和特性,:本文主要介绍C... 目录(1)容器及简要描述‌php顺序容器‌‌关联容器‌‌无序关联容器‌(基于哈希表):‌容器适配器‌:(

使用Python实现高效的端口扫描器

《使用Python实现高效的端口扫描器》在网络安全领域,端口扫描是一项基本而重要的技能,通过端口扫描,可以发现目标主机上开放的服务和端口,这对于安全评估、渗透测试等有着不可忽视的作用,本文将介绍如何使... 目录1. 端口扫描的基本原理2. 使用python实现端口扫描2.1 安装必要的库2.2 编写端口扫

使用Python实现操作mongodb详解

《使用Python实现操作mongodb详解》这篇文章主要为大家详细介绍了使用Python实现操作mongodb的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、示例二、常用指令三、遇到的问题一、示例from pymongo import MongoClientf

SQL Server使用SELECT INTO实现表备份的代码示例

《SQLServer使用SELECTINTO实现表备份的代码示例》在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误,在SQLServer中,可以使用SELECTINT... 在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误。在 SQL Server 中,可以使用 SE

使用Python合并 Excel单元格指定行列或单元格范围

《使用Python合并Excel单元格指定行列或单元格范围》合并Excel单元格是Excel数据处理和表格设计中的一项常用操作,本文将介绍如何通过Python合并Excel中的指定行列或单... 目录python Excel库安装Python合并Excel 中的指定行Python合并Excel 中的指定列P

浅析Rust多线程中如何安全的使用变量

《浅析Rust多线程中如何安全的使用变量》这篇文章主要为大家详细介绍了Rust如何在线程的闭包中安全的使用变量,包括共享变量和修改变量,文中的示例代码讲解详细,有需要的小伙伴可以参考下... 目录1. 向线程传递变量2. 多线程共享变量引用3. 多线程中修改变量4. 总结在Rust语言中,一个既引人入胜又可

四种Flutter子页面向父组件传递数据的方法介绍

《四种Flutter子页面向父组件传递数据的方法介绍》在Flutter中,如果父组件需要调用子组件的方法,可以通过常用的四种方式实现,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录方法 1:使用 GlobalKey 和 State 调用子组件方法方法 2:通过回调函数(Callb

golang1.23版本之前 Timer Reset方法无法正确使用

《golang1.23版本之前TimerReset方法无法正确使用》在Go1.23之前,使用`time.Reset`函数时需要先调用`Stop`并明确从timer的channel中抽取出东西,以避... 目录golang1.23 之前 Reset ​到底有什么问题golang1.23 之前到底应该如何正确的

Vue项目中Element UI组件未注册的问题原因及解决方法

《Vue项目中ElementUI组件未注册的问题原因及解决方法》在Vue项目中使用ElementUI组件库时,开发者可能会遇到一些常见问题,例如组件未正确注册导致的警告或错误,本文将详细探讨这些问题... 目录引言一、问题背景1.1 错误信息分析1.2 问题原因二、解决方法2.1 全局引入 Element