Skip to content

Commit ffebca0

Browse files
Facade with DB services
Facade which exposes a database service for keeping each execution information.
1 parent 7a3a123 commit ffebca0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package com.lazyloading;
2+
3+
import javax.servlet.ServletException;
4+
import javax.servlet.http.HttpServlet;
5+
import javax.servlet.http.HttpServletRequest;
6+
import javax.servlet.http.HttpServletResponse;
7+
8+
9+
public class FachadaHttpServlet extends HttpServlet {
10+
11+
@Override
12+
protected void doGet(HttpServletRequest request,
13+
HttpServletResponse response) throws ServletException {
14+
String datosEjecucion = request.getParameter("datosEjecucion");
15+
}
16+
}

0 commit comments

Comments
 (0)