当前位置:  开发笔记 > 编程语言 > 正文

IntelliJ IDEA无法解析spring数据jpa @query注释中的实体

如何解决《IntelliJIDEA无法解析spring数据jpa@query注释中的实体》经验,为你挑选了0个好方法。

这是我的repository界面:

public interface ContentRepository extends JpaRepository {

    @Query(value = "select c from Content c where c.ContentCategory.genre =  :genre and c.ContentType.genre = :contentType")
    Iterable findByTypeAndCategory(@Param("contentType") String contentType, @Param("genre") String genre);

}

这是ContentPOJO:

@Entity
@Table(name = "content")
public class Content implements Serializable {

public Content() {
}

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;

@ManyToOne
private ContentCategory contentCategory;

@ManyToOne
private ContentType contentType;

// other methods }

在这里我的applicationContext.xml:










    
    
    
    



    



    
    

    
        
            
            
        
    
    
        
            update
        
    

编译器不能找到Content@Query

推荐阅读
周扒pi
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有