博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring.net 在aps.net Web的配置复习
阅读量:6637 次
发布时间:2019-06-25

本文共 1448 字,大约阅读时间需要 4 分钟。

1.引入程序集Spring.Core,CommonLogging,Spring.Web

2.Web.Config的配置

<?xml version="1.0" encoding="utf-8"?>

<configuration>
  <configSections>
    <sectionGroup name="spring">
      <section name="context" type="Spring.Context.Support.WebContextHandler, Spring.Web"/>
      <section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core"/>
    </sectionGroup>
    
  </configSections>
  <spring>
    <context>
      <resource uri="config://spring/objects"/>
      <resource uri="~/Config/BLL.xml"/>
    </context>
    <objects xmlns="http://www.springframework.net">
      <object id="student" type="WebApplication5.Student, WebApplication5">
      </object>
    </objects>
  </spring>
    <system.web>
      <compilation debug="true" targetFramework="4.5" />
      <httpRuntime targetFramework="4.5" />
      <httpHandlers>
        
      </httpHandlers>
    </system.web>
  <system.webServer>
    <modules>
      <add name="Spring" type="Spring.Context.Support.WebSupportModule, Spring.Web"/>
    </modules>
    <handlers>
      <add name="handle1" verb="*" path="*.aspx" type="Spring.Web.Support.PageHandlerFactory, Spring.Web"/>
    </handlers>
    <directoryBrowse enabled="true"/>
    
  </system.webServer>
</configuration>

BLL.XML

<?xml version="1.0" encoding="utf-8" ?>

<objects xmlns="http://www.springframework.net">
<object id="Teacher" type="WebApplication5.Teacher,WebApplication5">
</object>
</objects>

3. 客户端调用部分

IApplicationContext ctx = ContextRegistry.GetContext();

            Student  stu=ctx["Student"] as Student;
            stu.SayHello();

转载于:https://www.cnblogs.com/kexb/p/4573866.html

你可能感兴趣的文章
去掉主页 breadcrumb导航条上的<Liferay>字样
查看>>
因为有它,Spark集群的交互操作变得更简单
查看>>
kudu
查看>>
springboot使用quartz集群定时任务
查看>>
Presto Functions
查看>>
Linux(一) 基本操作
查看>>
【收藏】Edraw Max(亿图图示)软件快捷键大全
查看>>
Enumeration接口和Iterator接口的区别
查看>>
linux基础,vim编辑模式和命令行模式
查看>>
生产环境:tomcat9,jdk8优化配置
查看>>
PHP分页+Elasticsearch查询
查看>>
基础应用
查看>>
Oracle存储过程给变量赋值的方法
查看>>
学习笔记TF067:TensorFlow Serving、Flod、计算加速,机器学习评测体系,公开数据集...
查看>>
IntelliJ IDEA使用教程二 项目创建&Tomcat配置
查看>>
改变自己从学习linux开始
查看>>
dedecms二次开发及SEO笔记
查看>>
Web前端-JQuery
查看>>
JAVA List<Integer>集合根据值频率进行排序.
查看>>
2018宝宝取名常用字(带释义)
查看>>