在配置文件中添加所需的引用
我有两个不同的项目“A”和“B”。A 需要引用使用 spring.net setter 属性注入的 BI。我在配置文件中配置了它。
我还有一个新的控制台应用程序,其中我仅添加了“A”引用,并且我通过 XmlApplicationConext(path) 获取了“A”实例。但运行它后,我收到了对象创建异常。
我是否还需要在控制台应用程序中添加“B”引用。如果是,那么使用 spring .net 配置文件有什么用。
Spring.Net内部会自动加载所需的dll吗?
I have two different projects 'A' and 'B'.A needs reference of B.I used spring.net setter property injection.I configured it in config file.
I have one more new console application where i added only 'A's reference and im getting the 'A's instance through XmlApplicationConext(path).but after running it im getting object creation exception.
Do i need to add 'B's refrence also in console application.if yes then what is the use of using spring .net config file.
Does Spring.Net internally automatically will load the dlls required.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring会自动加载所需的dll。据我所知,它将在 与任何其他 .NET 应用程序的顺序相同。
如果将控制台应用程序配置为使用项目 B 中的类,则
B.dll
(项目 B 的输出 dll)必须只能在运行时供控制台应用程序使用。您不必添加对项目 B 的引用即可实现此目的;您还可以将B.dll
文件复制到输出目录。我不确定“Spring.net 配置文件”是什么意思,但请注意配置文件不会自动加载, 您必须明确指定它们。您可以在配置文件中导入另一个配置文件,请参阅 操作方法文档:
Spring will automatically load the required dll's. As far as I know, it will look for the dll's to load in the same order as any other .NET application.
If you configure the console application to use classes from project B, then
B.dll
(the output dll from project B) has to be available to the console application at runtime only. You do not have to add a reference to project B to achieve this; you could also copy theB.dll
file to the output directory.I'm not sure what you mean by "the Spring.net config file", but be aware that config files are not automatically loaded, you have to specify them explicitly. You can import another configuration file in you configuration file, see the docs for a how-to: