1
    package servlet;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class SampleServlet
 */
@WebServlet("/SampleServlet")
public class SampleServlet extends HttpServlet {
    private static final long serialVersionUID = 1L;

    /**
     * @see HttpServlet#HttpServlet()
     */
    public SampleServlet() {
        super();
        // TODO Auto-generated constructor 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);``
    }

}

On the default generated servlet code on eclipse I found that doGet and doPost methods have protected access.

  1. What are the different access modifiers available for the doXXX methods?
  2. How It will affect the behavior of the class?
BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
AjaiArul
  • 53
  • 1
  • 4
  • [Here](http://stackoverflow.com/a/33627846/276052) is a good reference over the access modifiers and how they affect scope. As long as you are in fact overriding the methods (i.e. it's not private or default) it won't affect the behavior of the servlet. – aioobe Aug 05 '16 at 07:37
  • I don't get the question. protected itself is one of the access modifier. Do you mean, what access modifiers are applicable for those methods in child class, which are declared as protected in parent? – JavaHopper Aug 05 '16 at 21:19

1 Answers1

1

You cannot make more restrictive the access of an inherited method (for more details about that you can check the oracle documentation).

It does not affect the behaviour of the servlet since it is only a dispatched method call from its super class service method (see the source code).

Nicolas Henneaux
  • 11,507
  • 11
  • 57
  • 82