博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Guice系列之用户指南(二)
阅读量:6078 次
发布时间:2019-06-20

本文共 3195 字,大约阅读时间需要 10 分钟。

原文地址:https://code.google.com/p/google-guice/wiki/BindingAnnotations

BindingAnnotations(绑定注释):一个类型可能会有多个实现类,在绑定时加上注解,这样可以确定在依赖注入时用的具体是哪个实现类。

具体有2种,一种是自定义注解,另一种是@Named。

先看自定义注解,贴代码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

import com.google.inject.BindingAnnotation;

import java.lang.annotation.Target;

import java.lang.annotation.Retention;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

import static java.lang.annotation.ElementType.PARAMETER;

import static java.lang.annotation.ElementType.FIELD;

import static java.lang.annotation.ElementType.METHOD;

@BindingAnnotation

@Target({FIELD, PARAMETER, METHOD })

@Retention(RUNTIME)

public @interface Tom {

}

public interface Animal {

void say();

}

public class Cat implements Animal{

@Override

public void say() {

System.out.println("i am a cat");

}

}

public class Dog implements Animal{

@Override

public void say() {

System.out.println("i am a dog");

}

}

public interface HelloService {

void sayHello();

}

import com.google.inject.Inject;

public class HelloServiceImpl implements HelloService {

Animal animal;

@Inject

public HelloServiceImpl(@Tom Animal animal) {

this.animal = animal;

}

@Override

public void sayHello() {

System.out.println(animal.getClass().getSimpleName());

animal.say();

}

}

import com.google.inject.AbstractModule;

public class HelloServiceModule extends AbstractModule {

@Override

protected void configure() {

bind(Animal.class).annotatedWith(Tom.class).to(Cat.class);

bind(Animal.class).to(Dog.class);

bind(HelloService.class).to(HelloServiceImpl.class);

}

}

public class Test {

public static void main(String[] args) {

Injector injector = Guice.createInjector(new HelloServiceModule());

HelloService helloService = injector.getInstance(HelloService.class);

helloService.sayHello();

}

}

执行结果:

Cat
i am a cat

当把HelloServiceImpl的构造函数里的@Tom去掉后,执行结果:

Dog
i am a dog

发现,多个实现类绑定到一个类型时,后者覆盖前者。

第二种,用@Named注解,贴代码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

import com.google.inject.Inject;

import com.google.inject.name.Named;

public class HelloServiceImpl2 implements HelloService {

Animal animal;

@Inject

public HelloServiceImpl2(@Named("Snoopy") Animal animal) {

this.animal = animal;

}

@Override

public void sayHello() {

System.out.println(animal.getClass().getSimpleName());

animal.say();

}

}

import com.google.inject.AbstractModule;

import com.google.inject.name.Names;

public class HelloServiceModule2 extends AbstractModule {

@Override

protected void configure() {

bind(Animal.class).annotatedWith(Names.named("Snoopy")).to(Dog.class);

bind(Animal.class).to(Cat.class);

bind(HelloService.class).to(HelloServiceImpl2.class);

}

}

import com.google.inject.Guice;

import com.google.inject.Injector;

public class Test2 {

public static void main(String[] args) {

Injector injector = Guice.createInjector(new HelloServiceModule2());

HelloService helloService = injector.getInstance(HelloService.class);

helloService.sayHello();

}

}

执行结果:

Dog
i am a dog

转载地址:http://ezogx.baihongyu.com/

你可能感兴趣的文章
R3.4.0安装包时报错“需要TRUE/FALSE值的地方不可以用缺少值”,需升级到R3.5.0
查看>>
Java学习3_一些基础3_16.5.7
查看>>
通过PowerShell获取域名whois信息
查看>>
Python基础之给函数增加元信息
查看>>
痞子衡嵌入式:开启NXP-MCUBootUtility工具的HAB加密功能 - CST(中英双语)
查看>>
洛谷——2639[USACO09OCT]Bessie的体重问题Bessie's We…——01
查看>>
(转)推荐系统—从入门到精通(论文选摘)
查看>>
HDOJ 1025 DP+二分
查看>>
maven的生命周期和插件
查看>>
研究 Table DOM对象的属性和方法
查看>>
android_orm框架之greenDAO(一)
查看>>
SQL基础语句
查看>>
SQLiteDatabase里面的简单操作数据库的方法
查看>>
闲着没事,写个委托、异步委托玩玩
查看>>
WHM(Web Hosting Manager)/CPANEL 设置及linux 文件权限 经验
查看>>
Problem G
查看>>
前端图片优化方案
查看>>
python迭代、列表生成式
查看>>
matlab-可视化图像阈值选择GUI工具
查看>>
python-Input and Output--已阅
查看>>