美文网首页
[异常解决] 错误: Type of the parameter

[异常解决] 错误: Type of the parameter

作者: maiduoduo | 来源:发表于2023-06-07 19:55 被阅读0次

    具体错误如下

     //错误:
     
    Type of the parameter must be a class annotated with @Entity or a collection/array of it.
        kotlin.coroutines.Continuation<? super kotlin.Unit> continuation);
     
     //错误: 
    Not sure how to handle insert method's return type.
        public abstract java.lang.Object insertAll(@org.jetbrains.annotations.NotNull()
    
    

    更新了Kotlin版本以后,用到Android Jetpack Room库的模块编译报错,经过一番搜索没有得到正确的解决方案,后面对比kotlin源文件和编译的java文件,发现是Room的Dao类中定义的函数因为加了suspend导致编译后的函数多了一个参数:

    @org.jetbrains.annotations.Nullable()
    @androidx.room.Insert(onConflict = androidx.room.OnConflictStrategy.REPLACE)
    public abstract java.lang.Object insertAll(@org.jetbrains.annotations.NotNull()
    java.util.List<ButtonEntity> list, @org.jetbrains.annotations.NotNull()
    kotlin.coroutines.Continuation<? super kotlin.Unit> continuation);
    
    

    就是这个@org.jetbrains.annotations.NotNull() kotlin.coroutines.Continuation<? super kotlin.Unit> continuation)编译时报Type of the parameter must be a class annotated with @Entity or a collection/array of it.错误。

    具体原因暂时没去深究,临时的解决方案是去掉Dao类中函数的suspend,特此记录下,后面有空再研究下此问题的来龙去脉。

    最终解决方案

    修改Room的版本

    遇到此问题的朋友,可以按照上图中的解决方式更新Room到对应的版本解决此问题。

    相关文章

      网友评论

          本文标题:[异常解决] 错误: Type of the parameter

          本文链接:https://www.haomeiwen.com/subject/ojrtedtx.html