在春天,你总是使用web.config
/app.config
来存储你的对象,如下所示:
<spring>
<context>
<resource uri="config://spring/objects"/>
</context>
<objects>
<description>An example that demonstrates simple IoC features.</description>
</objects>
</spring>
或者
<resource uri="~/config/objects.xml" />
有时我在一些没有此 web.config 的服务下运行,我想将我的对象添加到资源文件 ( *.resx
) 中。
我该怎么做,所以我可以IApplicationContext
像打电话一样得到一个完整的IApplicationContext ctx = ContextRegistry.GetContext();
?
所以基本上我不想使用 web.config,而是想使用资源文件来存储我的对象并使用这些对象初始化我的应用程序上下文。