You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Vaadin 8 and 7, the VaadinRequest#getParameterMap method returns the result directly from javax.servlet.ServletRequest#getParameterMap. So Vaadin does nothing here. JavaDoc from there says, i.e. does not seem to say anything about whether order is preserved or not. So this is purely upto container implementation. The guideline is that you should not depend on order of the query parameters.
/**
* Returns a java.util.Map of the parameters of this request.
*
* <p>Request parameters are extra information sent with the request.
* For HTTP servlets, parameters are contained in the query string or
* posted form data.
*
* @return an immutable java.util.Map containing parameter names as
* keys and parameter values as map values. The keys in the parameter
* map are of type String. The values in the parameter map are of type
* String array.
*/
public Map<String, String[]> getParameterMap();
Hello, can you add possibility to get Query Parameters in the same order that in the URL?
The text was updated successfully, but these errors were encountered: