没有 App.config 的 Spring.Net
我想在其他一些设置文件(例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以将配置放在普通的 xml 文件中。在 Spring.NET 文档中, 以下示例是给定:
services.xml
:文件
daos.xml
具有类似的结构,并包含ItemDao
和AccountDao的定义
。在代码中,您可以使用文件
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
:The file
daos.xml
has a similar structure and contains definitions forItemDao
andAccountDao
.In code, you can create an instance of your container using the files
services.xml
anddaos.xml
as follows: