没有 App.config 的 Spring.Net

发布于 2024-11-19 13:15:27 字数 113 浏览 1 评论 0原文

我想在其他一些设置文件(例如 xml)中配置 spring.net,而不是通过 app.config。 是否可以在 xml 中而不是在 app.config 文件中配置 spring.net。如果是,我该怎么做。

I want to configure the spring.net in some other setting files like xml not through app.config.
Is it possible to configure the spring.net in xml not in app.config file.if yes how can i do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

御守 2024-11-26 13:15:27

是的,您可以将配置放在普通的 xml 文件中。在 Spring.NET 文档中, 以下示例是给定

services.xml

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

  <object id="PetStore" type="PetStore.Services.PetStoreService, PetStore">
    <property name="AccountDao" ref="AccountDao"/>
    <property name="ItemDao" ref="ItemDao"/>
    <!-- additional collaborators and configuration for this object go here -->
  </object>

  <!-- more object definitions for services go here -->

</objects>

文件daos.xml具有类似的结构,并包含ItemDaoAccountDao的定义

在代码中,您可以使用文件 services.xmldaos.xml 创建容器实例,如下所示:

IApplicationContext context = new XmlApplicationContext("services.xml", "daos.xml")

Yes, you can place your configuration in normal xml files. In the Spring.NET documentation, the following example is given:

services.xml:

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

  <object id="PetStore" type="PetStore.Services.PetStoreService, PetStore">
    <property name="AccountDao" ref="AccountDao"/>
    <property name="ItemDao" ref="ItemDao"/>
    <!-- additional collaborators and configuration for this object go here -->
  </object>

  <!-- more object definitions for services go here -->

</objects>

The file daos.xml has a similar structure and contains definitions for ItemDao and AccountDao.

In code, you can create an instance of your container using the files services.xml and daos.xml as follows:

IApplicationContext context = new XmlApplicationContext("services.xml", "daos.xml")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文