Spring.Net实现IOC和DI

时间:2023-03-08 18:29:13
Spring.Net实现IOC和DI

一:在Asp.net MVC中应该怎样使用Spring.Net?
1:先导入dll文件。

Spring.Net实现IOC和DI
2:将案例中的Config文件夹拷贝到项目中。

3:修改Config文件夹中的相关的配置信息。

type里面填写:命名空间+类名,程序集名称;singleton:单例模式

property:该类中的属性 name代表属性名,ref代表该属性引用自哪里,这里指的是名称为userinfobll的属性引用自services.xml中的UserInfoBLL类,上图ref值等于下图name属性值。

Spring.Net实现IOC和DI

Spring.Net实现IOC和DI
4:修改Web.config文件中的配置。

<configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    <sectionGroup name="spring"><!--Spring.Net配置信息-->
      <section name="context" type="Spring.Context.Support.MvcContextHandler, Spring.Web.Mvc4"/>
    </sectionGroup>
  </configSections>
  <spring><!--Spring.Net配置信息-->
    <context>
      <resource uri="file://~/Config/controllers.xml"/>
      <resource uri="file://~/Config/services.xml"/>
    </context>
  </spring>

5:可以将Config/controllers.xml文件中的配置信息分离(可以将控制器的配置与业务类的配置分离。)注意web.config文件中也要修改
6:修改Global文件.继承SpringMvcApplication

相关文章