You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
5.6 KiB
144 lines
5.6 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<web-app id="WebApp_ID" 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>moumi5</display-name> |
|
<!-- [INSERT FRAGMENT HERE] --> |
|
<welcome-file-list> |
|
<welcome-file>index.html</welcome-file> |
|
<welcome-file>index.htm</welcome-file> |
|
<welcome-file>index.jsp</welcome-file> |
|
<welcome-file>default.html</welcome-file> |
|
<welcome-file>default.htm</welcome-file> |
|
<welcome-file>default.jsp</welcome-file> |
|
</welcome-file-list> |
|
<!-- INISwift SP Session Check Filter --> |
|
<!-- <filter> |
|
<filter-name>spSessionCheckFilter</filter-name> |
|
<filter-class>kr.co.iniline.swift.sp.filter.SpSessionCheckFilter</filter-class> |
|
<init-param> |
|
<param-name>SPFilterConfigFilePath</param-name> |
|
<param-value>/edudocs/webapps/was_sen_008/was/WEB-INF/config/sp_filter_config.xml</param-value> |
|
</init-param> |
|
<init-param> |
|
<param-name>SwiftHomeDir</param-name> |
|
<param-value>/edudocs/webapps/was_sen_008/was/</param-value> |
|
</init-param> |
|
</filter> |
|
<filter-mapping> |
|
<filter-name>spSessionCheckFilter</filter-name> |
|
<url-pattern>/*</url-pattern> |
|
</filter-mapping>--> |
|
<!-- INISwift SP Session Check Filter --> |
|
<!-- SSO Servlet --> |
|
<!-- <servlet> |
|
<servlet-name>requestController</servlet-name> |
|
<servlet-class>kr.co.iniline.swift.sp.servlet.RequestController</servlet-class> |
|
<init-param> |
|
<param-name>SPConfigFilePath</param-name> |
|
<param-value>/edudocs/webapps/was_sen_008/was/WEB-INF/config/sp_config.xml</param-value> |
|
</init-param> |
|
<init-param> |
|
<param-name>SwiftHomeDir</param-name> |
|
<param-value>/edudocs/webapps/was_sen_008/was/</param-value> |
|
</init-param> |
|
<load-on-startup>1</load-on-startup> |
|
</servlet> |
|
<servlet-mapping> |
|
<servlet-name>requestController</servlet-name> |
|
<url-pattern>/SSO/*</url-pattern> |
|
</servlet-mapping>--> |
|
<!-- START of configuration for WebLogic --> |
|
<!-- <servlet> <servlet-name>ServletServlet</servlet-name> <servlet-class>weblogic.servlet.ServletServlet</servlet-class> |
|
<load-on-startup>-1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>ServletServlet</servlet-name> |
|
<url-pattern>/servlet/*</url-pattern> </servlet-mapping> --> |
|
<!-- END of configuration for WebLogic --> |
|
<!-- START of configuration for Jeus --> |
|
<!-- <servlet> |
|
<servlet-name>WorkerServlet</servlet-name> |
|
<servlet-class>jeus.servlet.servlets.WorkerServlet</servlet-class> |
|
<init-param> |
|
<param-name>PackageSeparator</param-name> |
|
<param-value>.</param-value> |
|
</init-param> |
|
<load-on-startup>-1</load-on-startup> |
|
</servlet> |
|
<servlet-mapping> |
|
<servlet-name>WorkerServlet</servlet-name> |
|
<url-pattern>/servlet/*</url-pattern> |
|
</servlet-mapping>--> |
|
<!-- END of configuration for Jeus --> |
|
|
|
<filter> |
|
<filter-name>Moumi</filter-name> |
|
<filter-class>kr.co.kihyun.moumi.Moumi</filter-class> |
|
</filter> |
|
|
|
<filter> |
|
<filter-name>JavascriptDependencyFilter</filter-name> |
|
<filter-class>gr.abiss.mvn.plugins.jstools.web.JavascriptDependencyFilter</filter-class> |
|
<init-param> |
|
<!-- Optional, tells the filter which file extentions are allowed. The |
|
default are the sample values below (if you just want those, you don't have |
|
to configure the filter). Note that the Filter will NOT load resources from |
|
META-INF. --> |
|
<param-name>allowedExtentions</param-name> |
|
<param-value>js as fla png jpg gif txt css html htm xml xsl xslt svg svgz swf</param-value> |
|
</init-param> |
|
<init-param> |
|
<!-- Optional, used to configure the Cache-Control HTTP header. Default |
|
is "max-age=86400" --> |
|
<param-name>cacheControl</param-name> |
|
<param-value>max-age=86400</param-value> |
|
</init-param> |
|
<init-param> |
|
<!-- Optional, enable gzip compression for browsers that support it (based |
|
on HTTP request headers). Default is true. --> |
|
<param-name>enableGzip</param-name> |
|
<param-value>true</param-value> |
|
</init-param> |
|
<init-param> |
|
<!-- Optional, control whether resources are cached to avoid I/O overhead |
|
every time they are requested. Default is true. --> |
|
<param-name>enableCache</param-name> |
|
<param-value>true</param-value> |
|
</init-param> |
|
<init-param> |
|
<!-- Optional, control whether gzipped resources are cached to avoid GZIPing |
|
overhead every time they are requested. Default is true. --> |
|
<param-name>enableGzipedCache</param-name> |
|
<param-value>true</param-value> |
|
</init-param> |
|
<init-param> |
|
<!-- Optional, tells the filter whether to send an HTTP 404 ("not found") |
|
code or let go of the filter chain to the application if no matching resource |
|
is found in the classpath. Possible values are {true, false}. The default |
|
is to send a 404 (true). --> |
|
<param-name>send404</param-name> |
|
<param-value>true</param-value> |
|
</init-param> |
|
<init-param> |
|
<!-- Optional (mandatory for arbitary url-pattern in filter-mapping). |
|
Used to tell the plugin what base URL fragment to ignore when looking for |
|
Javascript resources. Must match the url-pattern in filter-mapping, see below. |
|
Default is /lib/js --> |
|
<param-name>basePath</param-name> |
|
<param-value>/lib/js/</param-value> |
|
</init-param> |
|
</filter> |
|
<filter-mapping> |
|
<filter-name>Moumi</filter-name> |
|
<url-pattern>/*</url-pattern> |
|
</filter-mapping> |
|
|
|
<filter-mapping> |
|
<filter-name>JavascriptDependencyFilter</filter-name> |
|
<!-- matches the default value of the basePath init - param --> |
|
<url-pattern>/lib/js/*</url-pattern> |
|
</filter-mapping> |
|
|
|
<listener> |
|
<listener-class> |
|
org.apache.commons.fileupload.servlet.FileCleanerCleanup</listener-class> |
|
</listener> |
|
</web-app>
|
|
|