2024-05-22 15:47:21 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<web-app 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"
|
|
|
|
version="4.0">
|
2024-05-28 17:17:51 +02:00
|
|
|
<display-name>${project.name}</display-name>
|
|
|
|
<description>${project.description}</description>
|
2024-05-22 15:47:21 +02:00
|
|
|
<servlet>
|
2024-05-30 11:44:47 +02:00
|
|
|
<servlet-name>org.gcube.service.helloworld.ResourceInitializer</servlet-name>
|
2024-05-22 15:47:21 +02:00
|
|
|
</servlet>
|
2024-05-24 14:19:55 +02:00
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>default</servlet-name>
|
|
|
|
<url-pattern>/docs/*</url-pattern>
|
|
|
|
</servlet-mapping>
|
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>default</servlet-name>
|
|
|
|
<url-pattern>/api-docs/*</url-pattern>
|
|
|
|
</servlet-mapping>
|
2024-05-22 15:47:21 +02:00
|
|
|
<servlet-mapping>
|
2024-05-30 11:44:47 +02:00
|
|
|
<servlet-name>org.gcube.service.helloworld.ResourceInitializer</servlet-name>
|
2024-05-22 15:47:21 +02:00
|
|
|
<url-pattern>/*</url-pattern>
|
|
|
|
</servlet-mapping>
|
|
|
|
</web-app>
|