Closed
Description
Note: Due to its reliance on PropertyEditors, SimpleTypeConverter is not thread-safe. Use a separate instance for each thread.
https://github.com/spring-projects/spring-framework/blob/68757073b0cf69c41d5c17e8abdffbc388cdbabe/spring-beans/src/main/java/org/springframework/beans/SimpleTypeConverter.java#L26
It seems that all the concurrent operations in ArgumentMethodArgumentResolver
share one SimpleTypeConverter
, as well as QueryByExampleDataFetcher
.