mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
85a8868bae
awaitEntity() used T::class.java which erases generic type information (e.g. List<Foo> becomes just List). Use the reified toEntity<T>() extension instead, which preserves full generic type via ParameterizedTypeReference. Closes gh-36834 Signed-off-by: wushiyuanmaimob <wushiyuanwork@outlook.com>