如何在外部 Spring.NET 配置文件中指定 typeAliases 和对象
解决了!!!! 感谢您的帮助,
我有点迷失在这里,我想删除 Web.Config 之外的所有 Spring.NET 配置,但我不知道如何放置我的 typeAliases。
我将感谢您能给我的所有帮助。
谢谢。
SOLVED!!!! Thanks for your help
I'm kinda lost here, I'd like to remove all the Spring.NET configuration outside Web.Config but I cant figure out how to put my typeAliases.
I'll appreciate all the help you can give me.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 app.config/web.config 中注册类型别名:
或者通过添加 Spring.Objects.Factory.Config.TypeAliasConfigurer 对象的定义在 spring 配置文件中注册:
您可以在文档。
You can register type aliases either in app.config/web.config:
Or in a spring configuration file by adding a definition for the
Spring.Objects.Factory.Config.TypeAliasConfigurer
object:You will find this in the documentation.