1
2
3
4
5
6
7
8
9
10
11
12
13
14
| @WebServlet("/showlogoservlet")
public class SimpleServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException {
getServletContext()
.getRequestDispatcher("/showlogo.jsp")
.forward(request, response);
}
}
|