6.Spring与Web
Posted 小马Mark
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6.Spring与Web相关的知识,希望对你有一定的参考价值。
在 Web 项目中使用 Spring 框架,首先要解决在 web 层(这里指 Servlet)中获取到 Spring容器的问题。只要在 web 层获取到了 Spring 容器,便可从容器中获取到 Service 对象。
使用监听器在ContextServlet上下文域创建容器,这样就只会创建一次。
spring框架提供了监听器,当然也可以自己写监听器。
maven依赖:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.2.5.RELEASE</version>
</dependency>
注册监听器:
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
指定Spring配置文件的配置:
默认是监听器是加载WEB_INF/applicationContext.xml文件,但是我们一般不会把spring配置文件放这,所以可以修改路径。
一般会将spring配置文件放置于项目的 classpath 下,即 src 下,所以需要在 web.xml 中对 Spring 配置文件的位置及名称进行指定。
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
获取Spring容器对象:
-
直接从 ServletContext 中获取
- 从对监听器 ContextLoaderListener 的源码分析可知,容器对象在 ServletContext 的中存放的 key 为 WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE。所以,可以直接通过 ServletContext 的 getAttribute()方法,按照指定的 key 将容器对象获取到。
String attr = WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE; WebApplicationContext ac = (WebApplicationContext) this.getServletContext().getAttribute(attr); ------------------------------------------------------------------------------ StudentService studentService = (StudentService) ac.getBean("studentService");
-
通过 WebApplicationContextUtils 获取
- 工具类 WebApplicationContextUtils 有一个方法专门用于从 ServletContext 中获取 Spring容器对象:getRequiredWebApplicationContext(ServletContext sc)
WebApplicationContext ac = WebApplicationContextUtils.getRequiredWebApplicationContext(this.getServletContext()
以上是关于6.Spring与Web的主要内容,如果未能解决你的问题,请参考以下文章
spring boot框架学习6-spring boot的web开发
Spring课程 Spring入门篇 4-6 Spring bean装配之基于java的容器注解说明--@ImportResource和@Value java与properties文件交互