Can a url-pattern in a web.xml file use the query string to determine the match such as:
<security-constraint>
<web-resource-collection>
<web-resource-name>myServletTest</web-resource-name>
<url-pattern>/myServlet?test=one</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
Or is that invalid or will it just match myServlet ignoring the query string?