В idea создал новый проект "web application" с название JEE Tutorial. Автоматом был сгенерирован web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
</web-app>
Далее добавил servlet "com.example.tutorial.ServletExample", в итоге получился такой класс
package com.example.tutorial;
import ....
@WebServlet(name = "ServletExample", urlPatterns = "/test")
public class ServletExample extends HttpServlet {
protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
PrintWriter out = response.getWriter();
out.println("Hello Servlet!");
}
}
Но после запуска tomcat 8 отдает на все страниц 404.
Пробовал открывать /ServletExample/test, /test, /