diff --git a/pom.xml b/pom.xml
index 03307a235..9bd081f59 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,6 +49,7 @@
1.9.0
0.8.5
0.1.5
+ 0.1.4
2.4
2.5
@@ -247,6 +248,11 @@
datatables-export-itext
${dandelion.datatables.export.itext.version}
+
+ com.github.dandelion
+ datatables-servlet2
+ ${dandelion.datatables.servlet2.version}
+
diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml
index ef04c4a18..f987a66a9 100644
--- a/src/main/webapp/WEB-INF/web.xml
+++ b/src/main/webapp/WEB-INF/web.xml
@@ -1,65 +1,89 @@
-
-
-
- Spring PetClinic
- Spring PetClinic sample application
-
-
- spring.profiles.active
- jdbc
-
-
-
-
-
- contextConfigLocation
- classpath:spring/dao-config.xml, classpath:spring/tools-config.xml
-
-
-
- org.springframework.web.context.ContextLoaderListener
-
-
-
-
- petclinic
- org.springframework.web.servlet.DispatcherServlet
-
- contextConfigLocation
- classpath:spring/mvc-core-config.xml
-
- 1
-
-
-
- petclinic
- /
-
-
-
-
- httpMethodFilter
- org.springframework.web.filter.HiddenHttpMethodFilter
-
-
-
- httpMethodFilter
- petclinic
-
-
+
+
+
+ Spring PetClinic
+ Spring PetClinic sample application
+
+
+ spring.profiles.active
+ jdbc
+
+
+
+
+
+ contextConfigLocation
+ classpath:spring/dao-config.xml, classpath:spring/tools-config.xml
+
+
+
+ org.springframework.web.context.ContextLoaderListener
+
+
+
+
+ petclinic
+ org.springframework.web.servlet.DispatcherServlet
+
+ contextConfigLocation
+ classpath:spring/mvc-core-config.xml
+
+ 1
+
+
+
+ petclinic
+ /
+
+
+
+
+ datatablesController
+ com.github.dandelion.datatables.extras.servlet2.servlet.DatatablesServlet
+
+
+
+
+ datatablesController
+ /datatablesController/*
+
+
+
+
+ datatablesFilter
+ com.github.dandelion.datatables.extras.servlet2.filter.DatatablesFilter
+
+
+
+
+ datatablesFilter
+ /*
+
+
+
+
+ httpMethodFilter
+ org.springframework.web.filter.HiddenHttpMethodFilter
+
+
+
+ httpMethodFilter
+ petclinic
+
+
\ No newline at end of file