在请求调度的情况下是否可以更改 url。
这是我的代码
public void doGet(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException
{
List<HomePageServicesDescription> data= HomePageServicesDescriptionDB.showHomePageServicesDescription();
req.setAttribute("description", data);
req.getRequestDispatcher("index.jsp").forward(req,res);
}
因此,当在 Web 浏览器中看到它时,它会给出http://localhost:8888/url-mapping
servlet 的 url=。但我想要那个 url= http://localhost:8888/index.jsp
。怎么可能。