初始化spring配置文件 ‹context-param› ‹listener›

Exisi 2022-06-28 14:06:43
Categories: Tags:

 

 

 

 

标签

说明

<context-param>

context-param元素声明应用范围内的初始化参数

子标签

说明

<param-name>

参数名

<param-value>

参数值

<description>

参数描述

 

<listener>

Listener元素指出事件监听程序类。

servlet API的版本2.3增加了对事件监听程序的支持,事件监听程序在建立、修改和删除会话或servlet环境时得到通知。

子标签

说明

<listerner-class>

参数名

 

示例

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

<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">

  <!--  Spring 服务层的配置文件 -->

  <context-param>

    <param-name>contextConfigLocation</param-name>

    <param-value>classpath:applicationContext.xml</param-value>

  </context-param>

 

 <!-- 配置文件加载监听器 -->

 <listener>

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

 </listener>

 

</web-app>

 

 

来自< https://www.cnblogs.com/vanl/p/5753722.html>