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

WEB-INF.web.xml Maven / Gradle / Ivy

There is a newer version: 13.0
Show newest version
<web-app id="WebApp_ID"
	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_3_0.xsd" version="3.0" metadata-complete="false">

	<display-name>Spring Web MVC Application</display-name>

	<servlet>
		<servlet-name>mvc-dispatcher</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextClass</param-name>
			<param-value>org.springframework.osgi.web.context.support.OsgiBundleXmlWebApplicationContext</param-value>
		</init-param>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>
		    	/WEB-INF/mvc-dispatcher-servlet-osgi.xml,
		    	/WEB-INF/mvc-dispatcher-servlet.xml
			</param-value>
		</init-param>
		<load-on-startup>2</load-on-startup>
	</servlet>

	<servlet-mapping>
		<servlet-name>mvc-dispatcher</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>
	
	<context-param>
		<param-name>contextClass</param-name>
		<param-value>org.springframework.osgi.web.context.support.OsgiBundleXmlWebApplicationContext</param-value>
	</context-param>
	
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
	
	<!-- Required in order to autowire HttpServletRequest in STAuthorizationEvaluator -->
	<listener>
	    <listener-class>
	        org.springframework.web.context.request.RequestContextListener
	    </listener-class>
	</listener>
	
	<filter>
		<filter-name>corssContextSessionFilter</filter-name>
		<filter-class>it.uniroma2.art.semanticturkey.http.session.CrossContextSessionFilter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>corssContextSessionFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	
	
	<session-config>
		<session-timeout>60</session-timeout>
	</session-config>
	<listener>
	    <listener-class>
	    	org.springframework.security.web.session.HttpSessionEventPublisher
	    </listener-class>
	</listener>
	
</web-app>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy