我的助手说'Specifications<T : Any!>' is deprecated. Deprecated in Java.
应该改用什么?
import org.springframework.data.jpa.domain.Specifications
fun hasName(name: String?): Specifications<User>? = name?.let{User::name.equal(it) }
答案 0 :(得分:0)
但是在这里,我认为您只需要将返回类型更改为Specification
(由Specifications
实现)。