给定我想要用于 IoC 的对象,SPRING.NET 可以创建 XML 文件吗?

发布于 2024-12-04 06:20:52 字数 769 浏览 2 评论 0原文

我希望 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 技术交流群。

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

发布评论

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

评论(1

尴尬癌患者 2024-12-11 06:20:52

据我所知,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.

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