0
如何通過註解設置的Servlet 3.0中的兩個URL模式爲:異步的servlet 3.0 URL映射
@WebServlet(urlPatterns = "/flow", asyncSupported = true)
public class FlowService extends HttpServlet
這個例子是一個URL模式,但我想設置它兩個URL。
如何通過註解設置的Servlet 3.0中的兩個URL模式爲:異步的servlet 3.0 URL映射
@WebServlet(urlPatterns = "/flow", asyncSupported = true)
public class FlowService extends HttpServlet
這個例子是一個URL模式,但我想設置它兩個URL。
urlPatterns = {"/flow", "/low"}