首页 > 编程语言 > 详细

Spring.net 学习IOC------属性注入

时间:2017-01-10 13:35:03      阅读:233      评论:0      收藏:0      [点我收藏+]

我们就完成我们的第一个spring.net学习IOC的“hello world!”。

1> 我们新建一个C# 的控制台项目名为Spring,然后引入Spring.Core.dll与日志库

2> 新建一个xml文件object.xml 内容如下:

<?xml version="1.0" encoding="utf-8" ?>
<objects xmlns="http://www.springframework.net"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.net http://www.springframework.net/xsd/spring-objects.xsd">
  <object id="test" type="Spring.HelloWorld, Spring">
    <property name="name"  value="Hello World"/>
  </object>
</objects>

    当然我们也可以写在程序的配置文件中,但是我不喜欢写在配置文件中,而是重新创建一个xml文件。

3> 看我们的main方法中的内容:

#region 属性注入
           
            string path = System.AppDomain.CurrentDomain.BaseDirectory + "Object.xml";
             //1.引用spring.net 库
             //2.构造IOC 容器  
            IApplicationContext ctx = new XmlApplicationContext(path);
           
             //3.在IOC容器中获取实例
            HelloWorld he = ctx.GetObject("test") as HelloWorld;
            
            
             //4.调用hello方法
            //he.Hello();
            Console.WriteLine(he.name);
         
#endregion

4> 我们还需要定义一个HelloWorld的类

 class HelloWorld
    {
        public string name { get; set; }  //属性定义
    }

5> 说明

通过构造器创建对象需要满足:指明对象类型type="类全名,程序集名"(<object id="test" type="Spring.HelloWord, Spring" />),其中的id我们可以任意起名字。配置文件的结点必须是object。IApplicationContext 是一IOC容器的接口。

 

Spring.net 学习IOC------属性注入

原文:http://www.cnblogs.com/JeremyLuBlog/p/6268795.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!