给定我想要用于 IoC 的对象,SPRING.NET 可以创建 XML 文件吗?
我希望 Spring.NET 为以下类生成匹配的 XML 文件:
public class MyClass
{
public int Id { get; set; }
public DateTime Date { get; set; }
public string String1 { get; set; }
public string String2 { get; set; }
public string String3 { get; set; }
public string String4 { get; set; }
}
我该怎么做? spring.NET 支持任何此类序列化吗?
当我想到“spring .net 序列化”时,我的意思是这个输出 XML:
<property name ="Id" value=""/>
<property name ="Date" value=""/>
<property name ="String1" value=""/>
<property name ="String2" value=""/>
<property name ="String3" value=""/>
<property name ="String4" value=""/>
即 - 我需要生成匹配的 XML,以用作我的基于 spring.net 的产品的配置文件。
I want Spring.NET to generate a matching XML file for the following class :
public class MyClass
{
public int Id { get; set; }
public DateTime Date { get; set; }
public string String1 { get; set; }
public string String2 { get; set; }
public string String3 { get; set; }
public string String4 { get; set; }
}
How can I do it? Does spring.NET support any serializing of this sort?
When I think about "spring .net serializing" I mean this output XML :
<property name ="Id" value=""/>
<property name ="Date" value=""/>
<property name ="String1" value=""/>
<property name ="String2" value=""/>
<property name ="String3" value=""/>
<property name ="String4" value=""/>
i.e. - I need to generate the matching XML to be used as a configuration file for my spring.net based product.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,Spring.net 没有提供这样的工具。您可能需要安装 Spring.NET Visual Studio 插件,它在编写时提供智能感知帮助VS.NET 2010 中的 Spring XML 配置文件。它使您的 Spring.NET xml 生活变得更加轻松。
Spring.net does not come with such a tool, afaik. You might want to install the Spring.NET Visual Studio Add-In, which provides intellisense assistance when writing Spring XML configuration files in VS.NET 2010. It makes your Spring.NET xml life a lot easier.