Spring4-在WEB应用中使用Spring

Spring

在WEB应用中使用Spring

  • 1.Spring 如何在 WEB 应用中使用 ?

    • 1). 需要额外加入的 jar 包:

      spring-web-4.0.0.RELEASE.jar
      spring-webmvc-4.0.0.RELEASE.jar

    • 2). Spring 的配置文件, 没有什么不同

    • 3). 如何创建 IOC 容器 ?

      • ①. 非 WEB 应用在 main 方法中直接创建

      • ②. 应该在 WEB 应用被服务器加载时就创建 IOC 容器:

        在 ServletContextListener#contextInitialized(ServletContextEvent sce) 方法中创建 IOC 容器.

      • ③. 在 WEB 应用的其他组件中如何来访问 IOC 容器呢 ?

        在 ServletContextListener#contextInitialized(ServletContextEvent sce) 方法中创建 IOC 容器后, 可以把其放在
        ServletContext(即 application 域)的一个属性中.

      • ④. 实际上, Spring 配置文件的名字和位置应该也是可配置的! 将其配置到当前 WEB 应用的初始化参数中较为合

        适.

        ​ web.xml文件

        <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
          
          <context-param>
            <param-name>configLocation</param-name>
            <param-value>applicationContext.xml</param-value>
          </context-param>
          <listener>
            <listener-class>com.atguigu.spring.struts2.listeners.SpringServletContextListener</listener-class>
          </listener>
          <servlet>
            <description></description>
            <display-name>TestServlet</display-name>
            <servlet-name>TestServlet</servlet-name>
            <servlet-class>com.atguigu.spring.struts2.servlet.TestServlet</servlet-class>
          </servlet>
          <servlet-mapping>
            <servlet-name>TestServlet</servlet-name>
            <url-pattern>/TestServlet</url-pattern>
          </servlet-mapping>
        </web-app>
        
    • 4). 在 WEB 环境下使用 Spring

      • ①. 需要额外加入的 jar 包:

        spring-web-4.0.0.RELEASE.jar
        spring-webmvc-4.0.0.RELEASE.jar

      • ②. Spring 的配置文件, 和非 WEB 环境没有什么不同

        <!-- 配置 Spring 配置文件的名称和位置 -->
        <context-param>
        	<param-name>contextConfigLocation</param-name>
        	<param-value>classpath:applicationContext.xml</param-value>
        </context-param>
        
        <!-- 启动 IOC 容器的 ServletContextListener -->
        <listener>
        	<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
        
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值