gpt4 book ai didi

scala - 休眠 session 列表转换

转载 作者:行者123 更新时间:2023-12-02 05:09:50 28 4
gpt4 key购买 nike

 hibernate session to list conversion
Compilation Error occured when java converted into scala..!!

错误: 类型不匹配;发现:java.util.List[?0] 其中类型 ?0 需要: scala.collection.immutable.List[com.scala.entity.User]

   Code:     def getAllUsers(): List[User] = {
return getSession().createQuery("from User where reslut='false'").list()
}

最佳答案

    def getAllUsers(): List[User] = {
val objList = getSession().createQuery("from User where isDelete = 'false'").list()
objList.asInstanceOf[List[User]]

关于scala - 休眠 session 列表转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15679660/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com