I am doing the following request from the client:
/search/hello%2Fthere/
where the search term \"hello/there\" has been URLencoded.
On t
@Configuration
public class AdditionalWebConfig extends WebMvcConfigurationSupport {
.......
...........
...........
@Override
public void configureContentNegotiation(ContentNegotiationConfigurer
configurer) {
configurer.favorPathExtension(false);
}
.......
.......
}
and add regex like this in @PathVariable("user/{username:.+}")