您的位置:首页 > 编程语言 > Java开发

Spring.net 在mvc中的用法

2013-10-07 16:26 239 查看
1. 引dll文件:Common.Loggong ,Spring.Core,Spring.Web ,Spring.Web.Mvc32. Global中public classMvcApplication : Spring.Web.Mvc.SpringMvcApplication3. Type=”类全名称,程序集”web.config文件中
<configuration>
<configSections>
<!--Spring.net的相关配置-->
<sectionGroup name="spring">
<section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core"/>
</sectionGroup>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<!--Spring.net下的context相关配置-->
<spring>
<context>
<resource uri="file://~/Config/controllers.xml"/>
</context>
在controllers.xml文件中
<?xml version="1.0" encoding="utf-8" ?><objects xmlns="http://www.springframework.net"><!--UserInfoController--><object  type="SoftWareVoice.OA.Controllers.UserInfoController,SoftWareVoice.OA" singleton="false" ><property name="UserInfoBLL" ref="UserInfoBLL" /></object><object name="UserInfoBLL" type="SoftWareVoice.OA.BLL.UserInfoBLL,SoftWareVoice.OA.BLL" singleton="false" ></object></objects>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: