October 2018
Intermediate to advanced
982 pages
23h 29m
English
We will configure our application to not use the suffix pattern match of .* and to not strip the values after the dot when parsing the parameters. Let's perform the following steps:
@Override
public void
configurePathMatch(PathMatchConfigurer configurer) {
configurer.setUseSuffixPatternMatch(false).
setUseTrailingSlashMatch(true);
}

Read now
Unlock full access