Para que te funcione tanto con GET como POST y si ya tienes hecho la funcionalidad para GET solo debes hacer esto en tu metodo doPost
Código PHP:
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doGet(request, response);
}
Saludos