2
我有休息服務實施。任何方式來獲取httpservlet請求中的路徑參數
我想在過濾器中獲取請求的路徑參數。
我的要求是
/api/test/{id1}/{status}
public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain)
throws IOException, ServletException
{
//Way to get the path parameters id1 and status
}