使用 Servlet 3.0, http://docs.oracle.com/javaee/6/api/javax/servlet/annotation/WebServlet.html
我们可以定义一个带有 WebServlet 注解的类:
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");
}
}
并定义一个 web.xml 文件而不映射 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>
因此,对http://test.com/hello的请求将正确打印“hello world”。
这是可行的,因为 Servlet 3.0 会扫描所有类以查找 WebServlet 注释。
有没有办法将此扫描限制在给定包中的类(例如,com.example.*)?