-
Notifications
You must be signed in to change notification settings - Fork 52
1.AutoConfiguration和Bean
nainaigu edited this page Oct 16, 2019
·
17 revisions
- 打了AutoConfiguration标签的Class就是配置类
- 在AutoConfiguration标签的Class里面打了Bean标签的返回对象就是要注册的单例对象
框架会扫描打了【AutoConfiguration】的class,然后会再扫描打了【Bean】标签的方法并且Invoke该方法,拿到方法返回的对象并以单例的形式注册到DI容器中!
- Key:如果指定key
- OrderIndex:值越大越先处理
//这个会加载
[AutoConfiguration("Test")]
public class MyConfig
{
[Bean]
public MyModel GetMyModel()
{
return new MyModel
{
Name = "yuzd"
};
}
}
//这个不会被加载
[AutoConfiguration("Prod")]
public class MyConfig
{
[Bean]
public MyModel GetMyModel()
{
return new MyModel
{
Name = "yuzd"
};
}
}
// autofac打标签模式 并且调用了 SetAutofacConfigurationKey方法 指定了 Key 为 “Test”
// 所有只会加载 打了且指定了Key=“Test”的AutoConfiguration标签class
builder.RegisterModule(new AutofacAnnotationModule(typeof(MyConfig).Assembly).SetAutofacConfigurationKey("Test"));
//方法的参数支持注入DI已存在的,或者Value标签
[Bean]
public MyModel GetMyModel(OtherClass other,[Value("${connetionString}")] connetionString)
{
return new MyModel
{
Name = "yuzd"
};
}
- 使用Key指定可以实现不同的环境配置不同的对象到DI容器
- 一些复杂的对象实例可以使用Bean的方式注册的DI容器