Information

0
Story Points

Technologies

Web XML
  • Web XML
    Web Application Deployment Descriptors

Automatically Translated Files

<?xml version="1.0" encoding="UTF-8"?>
<!--

    ====================================================================
    Ikasan Enterprise Integration Platform

    Distributed under the Modified BSD License.
    Copyright notice: The copyright for this software and a full listing
    of individual contributors are as shown in the packaged copyright.txt
    file.

    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

     - Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.

     - Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.

     - Neither the name of the ORGANIZATION nor the names of its contributors may
       be used to endorse or promote products derived from this software without
       specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
    USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    =============================================================================

-->
<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" >

  <!-- The Spring context configurations listed here -->
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
      classpath:console-service-conf.xml
      classpath:ikasan-datasource-conf.xml
      classpath:platform-service-conf.xml
      classpath:scheduler-service-conf.xml
      classpath:module-service-conf.xml
      classpath:wiretap-service-conf.xml
      classpath:systemevent-service-conf.xml
      /WEB-INF/applicationContext-security.xml
    </param-value>
  </context-param>

  <!-- Spring security filter -->
  <filter>
      <filter-name>springSecurityFilterChain</filter-name>
      <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
  </filter>

  <!-- Spring security filter mapping (e.g. Apply security to all calls) -->
  <filter-mapping>
      <filter-name>springSecurityFilterChain</filter-name>
      <url-pattern>/*</url-pattern>
  </filter-mapping>

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

  <!-- Load the Servlet named console on startup (after the platform Spring contexts are loaded) -->
  <servlet>
    <servlet-name>console</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>

  <!-- All *.htm requests should be mapped to the console Servlet -->
  <servlet-mapping>
    <servlet-name>console</servlet-name>
    <url-pattern>*.htm</url-pattern>
  </servlet-mapping>

  <!-- The welcome file is index.jsp -->
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>

  <!-- Some extra JSP config, namely the tag libraries we use -->
  <jsp-config>
  
    <taglib>
      <taglib-uri>/spring-form</taglib-uri>
      <taglib-location>/WEB-INF/tld/spring-form.tld</taglib-location>
    </taglib>

  </jsp-config>

</web-app>
Page generated: 9 Apr 2019, 10:30:13