I used Spring Boot to implement a REST application. I have one resource that is mapped like this
@RequestMapping(value = \"/{fromLat}/{fromLon}/{toLat}/{toL
I had similar issues with Spring Boot as described here.
What worked for me is the following configuration:
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
configurer.setUseSuffixPatternMatch(false);
}
}