-
Notifications
You must be signed in to change notification settings - Fork 2
/
bean_lifecycle_interface.go
73 lines (61 loc) · 1.61 KB
/
bean_lifecycle_interface.go
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
package di
import "reflect"
type (
// BeanName 返回beanName
BeanName interface {
BeanName() string
}
// BeanConstruct Bean实例创建时
BeanConstruct interface {
BeanConstruct()
}
// BeanConstructWithContainer Bean实例创建时
BeanConstructWithContainer interface {
BeanConstruct(DI)
}
// PreInitialize Bean实例依赖注入前
PreInitialize interface {
PreInitialize()
}
// PreInitializeWithContainer Bean实例依赖注入前
PreInitializeWithContainer interface {
PreInitialize(DI)
}
InjectInfo struct {
Bean interface{}
BeanName string
Type reflect.Type
IsPtr bool // 是否为结构指针
IsInterface bool // 是否为接口
Anonymous bool // 是否为匿名字段
Omitempty bool // 不存在依赖时则忽略注入
}
// Injector bean实例注入器
Injector interface {
BeanInject(di DI, info *InjectInfo)
}
// AfterPropertiesSet Bean实例注入完成
AfterPropertiesSet interface {
AfterPropertiesSet()
}
// AfterPropertiesSetWithContainer Bean实例注入完成
AfterPropertiesSetWithContainer interface {
AfterPropertiesSet(DI)
}
// Initialized 在Bean依赖注入完成后执行,可以理解为DI加载完成的通知事件。
Initialized interface {
Initialized()
}
// InitializedWithContainer 在Bean依赖注入完成后执行,可以理解为DI加载完成的通知事件。
InitializedWithContainer interface {
Initialized(DI)
}
// Disposable 在Bean注销时调用
Disposable interface {
Destroy()
}
// DisposableWithContainer 在Bean注销时调用
DisposableWithContainer interface {
Destroy(DI)
}
)