У меня есть сервлет EmailVerification
, сопоставленный с /ev/*
url-образцом.
http://example.com/ev/ce52320570
Как я могу получить эту часть ce52320570
URL-адреса в моем сервлете?
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String vid = ""; // Here I need to get the id from the URL
}