Returns only the path component of the URI as a string This call strips the protocol, host, port and query string parameters leaving only the path e.g. "/path/starts/here" Note that for slightly quicker performance you can call request().getUri() to get the full path as a string but you'll have
()
| 275 | * @throws NullPointerException if the URI is null |
| 276 | */ |
| 277 | public String getQueryPath() { |
| 278 | return new QueryStringDecoder(request.getUri()).getPath(); |
| 279 | } |
| 280 | |
| 281 | /** |
| 282 | * Returns the path component of the URI as an array of strings, split on the |