欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring在web开发中的应用

程序员文章站 2022-06-19 08:25:09
...

(1)在 web 项目中要使用 spring 需要导入一个 jar 包: 
spring-web-4.2.4.jar包 
(2)在 web.xml 文件中配置 Listener

<listener>
    <listener-class>
    org.springframework.web.context.ContextLoaderListener
    </listener-class>
</listener>

这个 ContextLoaderListener 它实现了 ServletContextListener.在这个 listener 中,当服务器启动时,将 ApplicationContext 对象,其实是它的一个实现类WebApplicationContext,对象存入到了 ServletContext 中。 
(3)我们还需要在 web.xml 文件中配置 applicationContext.xml 文件的位置,默认情况下会在 WEB-INF 目录 下查找 applicationContext.xml 
如果 applicationContext.xml 文件不在默认位置,我们可以在 web.xml 文件中配置。

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
</context-param>

Classpath:applicationContext.xml 它代表的是在当前工程的类路径下(可以理解成是在 src)下来查找 applicationContext.xml 文件。 
contextConfigLocation 它是在 listener 中声明的一个常量,描述的就是 spring 配置文件的位置。 
经过上述配置后,在web开发中就可以使用spring框架了。

转载于:https://my.oschina.net/772304419/blog/1594730