问题 I have a ProxyServlet to handle requests to another server (which uses HTTP Basic Authentication) sent from my Application, and i want to add the header manually before the Servlet fires the actual request so the User wont have to enter any credentials. I have tried something like this code below using HttpServletRequestWrapper public class DataServlet extends ProxyServlet { @Override protected void service(HttpServletRequest servletRequest, HttpServletResponse servletResponse) throws