Spring和Servlet的整合

        Servlet对象是谁创建的? 由服务器端创建的

        程序启动调用加载spring配置文件代码

        Web应用程序启动也需要加载Spring配置文件

        Web开发中有三大组件:

                1、servlet

                2、filter

                3、listener(request,session,application)

整合步骤:

     一 创建服务器的web项目

在main目录下创建webapp目录

在Modules中创建web项目,修改web项目Path路径和Resource路径

创建好的webapp项目进行 打包 和 服务器的发布

 二)spring和Servlet的整合

1.在web的xml文件中配置spring相关的配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">
<!--    配置spring的监听-->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
<!--    加载spring的配置文件-->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:Bean.xml</param-value>
    </context-param>
</web-app>

 2.在web容器中创建spring容器

3.在servlet方法中调用spring容器创建实例对象 ,执行相关操作

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值