我对Autofac有一个简单的基本配置,该配置使用JSON配置文件:
var config = new ConfigurationBuilder();
config.AddJsonFile("autofac.json",false,true); //notice reloadOnChange
// Register the ConfigurationModule with Autofac.
var module = new ConfigurationModule(config.Build());
var builder = new ContainerBuilder();
builder.RegisterModule(module);
// Set the dependency resolver to be Autofac.
_container = builder.Build();
这是JSON:
{
"defaultAssembly": "AutoFacConfigFile",
"components": [
{
"type": "AutoFacConfigFile.ConsoleOutput",
"services": [
{
"type": "AutoFacConfigFile.IOutput"
}
],
"instanceScope": "single-instance",
"injectProperties": true
}
]
}
ConsoleOutput
写入确切的输入字符串:
public class ConsoleOutput : IOutput
{
public void Write(string content)
{
Console.WriteLine(content);
}
}
但是,ConsoleOutput2
会写出确切的输入字符串+“ 222222222”:
public class ConsoleOutput2 : IOutput
{
public void Write(string content)
{
Console.WriteLine(content+"22222222222");
}
}
我想看看,如果我将形式ConsoleOutput
更改为ConsoleOutput2
,那么在运行时会看到不同的输出,这就是我创建循环的原因:
static void Main(string[] args)
{
AutofacExt.InitAutofac();
var writer = AutofacExt.GetFromFac<IOutput>();
Get(writer).Wait();
}
public static async Task Get(IOutput writer)
{
for (int i = 0; i < 100; i++)
{
await Task.Delay(1000);
writer.Write("s");
}
}
但是,即使我更改了JSON文件,在循环运行时,也看不到新的响应。我只看到旧的回复:
问题:
为什么从ConsoleOutput
更改为ConsoleOutput2
不能反映更改?
我希望:
"s"
"s"
"s"
-- file changed and saved here --
"s2222222222"
"s2222222222"
"s2222222222"
答案 0 :(得分:1)
Autofac不提供或不拥有配置构建器。不是“ Autofac的reloadOnChange
”,而是“ Microsoft.Extensions.Configuration的reloadOnChange
。”
Autofac将读取以该格式提供的配置,但是,一旦容器被构建,就是这样。之后,容器内容与配置之间没有任何“联系”或任何内容。
容器实际上是不可变的。 Updating the container is being removed for a variety of reasons,这是与配置更改时未重建容器相同的原因。
如果您需要在配置更改时更改内容,则需要在应用程序代码中进行。
说起来容易做起来难,尤其是在应用程序正在运行并且事物可能包含对从旧容器中解析的对象的引用时。这实际上是不支持此功能的重要原因。对于如何实现这一目标,我没有任何指导,因此会积极反对。
再次check out this discussion if you're interested in more on why containers are immutable.