Add a new servlet mapping, replacing any existing mapping for the specified pattern. @param pattern URL pattern to be mapped @param name Name of the corresponding servlet to execute
(String pattern, String name)
| 910 | * @param name Name of the corresponding servlet to execute |
| 911 | */ |
| 912 | default void addServletMappingDecoded(String pattern, String name) { |
| 913 | addServletMappingDecoded(pattern, name, false); |
| 914 | } |
| 915 |
no outgoing calls