Yanming Zhou
Yanming Zhou
`idle-timeout=1000` means connection will be closed if not used in next 1 second.
Does `ds.setMinimumIdle(0)` helps?
Can we support `spring.mvc.pathmatch.use-trailing-slash-match` like `spring.mvc.pathmatch.use-suffix-pattern` ? https://github.com/spring-projects/spring-boot/blob/47da70632f6159362f04c39591d4ad305e210c52/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties.java#L411
Please merge!
@mat007 please merge this.
Workaround for Spring Boot 2.6.x 1. revert matching strategy `spring.mvc.pathmatch.matching-strategy` to `ant-path-matcher` 2. hack springfox [WebMvcRequestHandlerProvider](https://github.com/springfox/springfox/blob/master/springfox-spring-webmvc/src/main/java/springfox/documentation/spring/web/plugins/WebMvcRequestHandlerProvider.java#L63) to filter out actuator controllers which don't respect `spring.mvc.pathmatch.matching-strategy` ```java public WebMvcRequestHandlerProvider(Optional servletContext, HandlerMethodResolver...
> > Workaround for Spring Boot 2.6.x > > > > 1. revert matching strategy `spring.mvc.pathmatch.matching-strategy` to `ant-path-matcher` > > 2. hack springfox [WebMvcRequestHandlerProvider](https://github.com/springfox/springfox/blob/master/springfox-spring-webmvc/src/main/java/springfox/documentation/spring/web/plugins/WebMvcRequestHandlerProvider.java#L63) to filter out actuator controllers which...
> Thanks for the answer, but this option does not work for me. It comes with more issues such as: > > `Failed to process import candidates for configuration class...
> springfox.documentation.spring.web.plugins I mean you should keep the original package name `springfox.documentation.spring.web.plugins`, not your own.