You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.7 KiB
64 lines
1.7 KiB
package servlets;
|
|
|
|
import java.io.IOException;
|
|
import javax.servlet.ServletConfig;
|
|
import javax.servlet.ServletException;
|
|
import javax.servlet.annotation.WebServlet;
|
|
import javax.servlet.http.HttpServlet;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
111111111111111
|
|
/**
|
|
* Servlet implementation class aa
|
|
*/
|
|
@WebServlet("/aa")
|
|
public class aa extends HttpServlet {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* @see HttpServlet#HttpServlet()
|
|
*/
|
|
public aa() {
|
|
super();
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
/**
|
|
* @see Servlet#init(ServletConfig)
|
|
*/
|
|
public void init(ServletConfig config) throws ServletException {
|
|
// TODO Auto-generated method stub
|
|
}
|
|
|
|
/**
|
|
* @see Servlet#destroy()
|
|
*/
|
|
public void destroy() {
|
|
// TODO Auto-generated method stub
|
|
}
|
|
|
|
/**
|
|
* @see HttpServlet#service(HttpServletRequest request, HttpServletResponse response)
|
|
*/
|
|
protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
|
// TODO Auto-generated method stub
|
|
}
|
|
|
|
/**
|
|
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
|
|
*/
|
|
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
|
// TODO Auto-generated method stub
|
|
response.getWriter().append("Served at: ").append(request.getContextPath());
|
|
}
|
|
|
|
/**
|
|
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
|
|
*/
|
|
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
|
// TODO Auto-generated method stub
|
|
doGet(request, response);
|
|
}
|
|
|
|
}
|