spring.net的基本搭建

这几天在学C#,感觉还是需要一个控制反转的框架,正好Spirng也有.net版的,看着API搭建一个

spring.net的基本搭建

大致目录是这样的,我们在APP.CONFIG里面配好xml文件的地址,这个APP.CONFIG就相当于是JAVA中的web.xml,object.xml相当于java框架里的applicationcontext.xml

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <configSections>
  4. <sectionGroup name="spring">
  5. <section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core" />
  6. <section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core" />
  7. </sectionGroup>
  8. </configSections>
  9. <spring>
  10. <context>
  11. <resource uri="assembly://FirstSpringNetApp/FirstSpringNetApp/Objects.xml"/>
  12. <resource uri="config://spring/objects" />
  13. </context>
  14. <objects xmlns="http://www.springframework.net"/>
  15. <!--必要-->
  16. </spring>
  17. </configuration>

第二个OBJECT.XML

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <objects xmlns="http://www.springframework.net"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.net
  5. http://www.springframework.net/xsd/spring-objects.xsd">
  6. <object id="PersonDao" type="FirstSpringNetApp.PersonDao, FirstSpringNetApp" />
  7. </objects>

然后就可以调用里面配好的对象了

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Spring.Context;
  6. using Spring.Context.Support;
  7. using Spring.Core.IO;
  8. using Spring.Objects.Factory;
  9. using Spring.Objects.Factory.Xml;
  10. namespace FirstSpringNetApp
  11. {
  12. class Program
  13. {
  14. static void Main(string[] args)
  15. {
  16. AppRegistry();
  17. Console.ReadLine();
  18. }
  19. static void AppRegistry()
  20. {
  21. IApplicationContext ctx = ContextRegistry.GetContext();
  22. Console.WriteLine(ctx.GetObject("PersonDao").ToString());
  23. }
  24. }
  25. }

spring.net的基本搭建

上一篇:MyEclipse 8.0注冊码+原版下载_Java开发软件


下一篇:c# WebBrower 与 HttpRequest配合 抓取数据