In Spring Boot 1.5.8, I want to setup all of my RestController
s' URLs to be case insensitive.
Here is a programmatic solution on Stackoverflow.
I just wonder is there any kinds of configuration we could setup in application.properties (or in other Spring Boot's configuration file)? Unfortunately, I don't find any flags in Spring Boot's Appendix A.
Could we configure the URL to be case-insensitive in Spring Boot?
Thanks.