BAEL-1277: RESTFul CRUD application with JavaLite (#3359)

* BAEL-1277: RESTFul CRUD application with JavaLite.

* BAEL-1277: RESTFul CRUD application with JavaLite. Adding exception handling.
This commit is contained in:
Magdalena Krause
2018-01-05 16:51:47 -03:00
committed by maibin
parent 749533e14d
commit 1273bb4aee
15 changed files with 315 additions and 0 deletions
@@ -0,0 +1 @@
,
@@ -0,0 +1,4 @@
{
"id" : ${product.id},
"name" : "${product.name}"
}
@@ -0,0 +1 @@
[<@render partial="product" collection=products spacer="comma"/>]
@@ -0,0 +1,4 @@
{
"message" : "${message}",
"code" : ${code}
}
+25
View File
@@ -0,0 +1,25 @@
<?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>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>