Olá,
Tenho minha Servlet foi em aula.
@WebServlet("/oi")
public class OiMundo extends HttpServlet {
private static final long serialVersionUID = 1L;
@Override
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
PrintWriter writer = resp.getWriter();
writer.println("<html>");
writer.println("<body>");
writer.println("<h1>Oi, esta é miha servlet!</h1>");
writer.println("</body>");
writer.println("</html>");
}
}
No entando quando tendo acessar a mesma no endereço,
http://localhost:8080/gerenciador/oi
não entra na servlet e mostra a mensagem abaixo.
The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
Estou usando java8, tomcat 9, usei o java10 e o mesmo erro continuou.