mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
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>