All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.simple.web.xml Maven / Gradle / Ivy

The newest version!
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
						http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

	<display-name>WebFrame</display-name>
	<description>
		WebFrame System ! https://github.com/fqntxmqee/webframe
	</description>

	<!-- session超时定义,单位为分钟 -->
	<session-config>
		<session-timeout>30</session-timeout>
	</session-config>
	
	
	<!-- ************************************     监听器 begin     ************************************ -->
	<listener>
		<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
	</listener>
	<!--Spring ApplicationContext 载入 -->
	<listener>
		<listener-class>org.webframe.web.spring.WFContextLoaderListener</listener-class>
	</listener>
	<!-- Spring 刷新Introspector防止内存泄露 -->
	<listener>
		<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
	</listener>
	<!-- ************************************     监听器  end      ************************************ -->
	
	
	<!-- ************************************应用范围内参数初始化 begin************************************ -->
	<context-param>
		<param-name>webAppRootKey</param-name>
		<param-value>webframe.root</param-value>
	</context-param>

	<!-- 日志 -->
	<context-param>
		<param-name>log4jConfigLocation</param-name>
		<param-value>classpath:log4j.properties</param-value>
	</context-param>
	
	<!-- WebFrame框架模块插件驱动加载器 -->
	<context-param>
		<param-name>modulePluginLoaderName</param-name>
		<param-value>org.webframe.support.driver.loader.PropertiesModulePluginLoader</param-value>
	</context-param>
	<!-- WebFrame框架日志是否启动 -->
	<context-param>
		<param-name>webframeSystemLog</param-name>
		<param-value>true</param-value>
	</context-param>
	<!-- 模块插件包是否排序 -->
	<context-param>
		<param-name>defaultSorted</param-name>
		<param-value>true</param-value>
	</context-param>
	<!-- ************************************应用范围内参数初始化 end************************************ -->


	<!-- ************************************     过滤器 begin     ************************************ -->
	<!-- WebFrame框架过滤器代理链 -->
	<filter>
		<filter-name>wfFilterChain</filter-name>
		<filter-class>org.webframe.web.filter.WFFilterProxy</filter-class>
	</filter>
	<!-- ************************************     过滤器 end     ************************************ -->
	
	
	<!-- ************************************   过滤器 映射 begin   ************************************ -->
	<filter-mapping>
		<filter-name>wfFilterChain</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	<!-- ************************************   过滤器 映射 end   ************************************ -->

	<servlet>
		<servlet-name>myServlet</servlet-name>
		<servlet-class>org.webframe.web.servlet.MyServlet</servlet-class>
	</servlet>
	
	<servlet-mapping>
		<servlet-name>myServlet</servlet-name>
		<url-pattern>/*</url-pattern>
	</servlet-mapping>
</web-app>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy