From 23a46b4be35277e06ec89f48730eeb694e686be8 Mon Sep 17 00:00:00 2001 From: Kenmegne <stephanie.kenmegne@gmail.com> Date: Thu, 18 Jun 2026 15:40:06 +0000 Subject: [PATCH] add fdx-commons and fdx-consultation --- apifdxweb/api/apifdxweb-service-impl/src/main/webapp/WEB-INF/web.xml | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/apifdxweb/api/apifdxweb-service-impl/src/main/webapp/WEB-INF/web.xml b/apifdxweb/api/apifdxweb-service-impl/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..000d207 --- /dev/null +++ b/apifdxweb/api/apifdxweb-service-impl/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<web-app version="4.0" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> + <session-config> + <session-timeout> + 30 + </session-timeout> + </session-config> + <filter> + <filter-name>CorsFilter</filter-name> + <filter-class>com.megatim.apifdxweb.service.impl.filters.CORSFilter</filter-class> + </filter> + <filter-mapping> + <filter-name>CorsFilter</filter-name> + <url-pattern>/*</url-pattern> + </filter-mapping> +</web-app> -- Gitblit v1.10.0