With Servlet 3.0, http://docs.oracle.com/javaee/6/api/javax/servlet/annotation/WebServlet.html
we can define a class with a WebServlet annotation:
package com.example;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.*;
@WebServlet({"/hello"})
public class HelloServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) {
response.getWriter().println("hello world");
}
}
and define a web.xml file without mapping the servlet:
<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
</web-app>
thus, a request to http://test.com/hello will correctly print "hello world".
this works because Servlet 3.0 scans all classes for a WebServlet annotation.
Is there a way to limit this scan to classes inside a given package (for instance, com.example.*)?