* BAEL-1275 Introduction to active web first commit * BAEL-1275 Added the module to parent pom * BAEL-1275 Introduction to ActiveWeb
30 lines
983 B
XML
30 lines
983 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5" 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_2_5.xsd">
|
|
|
|
|
|
<filter>
|
|
<filter-name>dispatcher</filter-name>
|
|
<filter-class>org.javalite.activeweb.RequestDispatcher</filter-class>
|
|
<init-param>
|
|
<param-name>root_controller</param-name>
|
|
<param-value>home</param-value>
|
|
</init-param>
|
|
<init-param>
|
|
<param-name>exclusions</param-name>
|
|
<param-value>css,images,js,ico</param-value>
|
|
</init-param>
|
|
<init-param>
|
|
<param-name>encoding</param-name>
|
|
<param-value>UTF-8</param-value>
|
|
</init-param>
|
|
</filter>
|
|
|
|
|
|
<filter-mapping>
|
|
<filter-name>dispatcher</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
|
|
</web-app>
|