在配置文件中添加所需的引用

发布于 2024-12-02 02:04:11 字数 265 浏览 1 评论 0原文

我有两个不同的项目“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青柠芒果 2024-12-09 02:04:11

Spring会自动加载所需的dll。据我所知,它将在 与任何其他 .NET 应用程序的顺序相同

如果将控制台应用程序配置为使用项目 B 中的类,则 B.dll(项目 B 的输出 dll)必须只能在运行时供控制台应用程序使用。您不必添加对项目 B 的引用即可实现此目的;您还可以将 B.dll 文件复制到输出目录。

我不确定“Spring.net 配置文件”是什么意思,但请注意配置文件不会自动加载, 您必须明确指定它们。您可以在配置文件中导入另一个配置文件,请参阅 操作方法文档

<objects xmlns="http://www.springframework.net">

  <import resource="file:///services.xml"/>
  <import resource="assembly://ProjectB/MyDataAccess/data-access.xml"/>

  <object id="object1" type="..."/>
  <object id="object2" type="..."/>

</objects>

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 the B.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:

<objects xmlns="http://www.springframework.net">

  <import resource="file:///services.xml"/>
  <import resource="assembly://ProjectB/MyDataAccess/data-access.xml"/>

  <object id="object1" type="..."/>
  <object id="object2" type="..."/>

</objects>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文