- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有以下 JPA 方法:
@SuppressWarnings("unchecked")
public Collection<Owner> findByPetType(Integer typeID) {
Query query = this.em.createQuery("SELECT DISTINCT owner FROM Owner owner left join fetch owner.pets as pet WHERE pet.type_id LIKE :typeID");
query.setParameter("typeID", typeID + "%");
return query.getResultList();
}
它抛出以下错误信息:
org.hibernate.QueryException: could not resolve property: type_id of:
org.springframework.samples.petclinic.model.Pet [SELECT DISTINCT owner FROM
org.springframework.samples.petclinic.model.Owner owner left join fetch owner.pets
as pet WHERE pet.type_id LIKE :typeID];
nested exception is java.lang.IllegalArgumentException:
org.hibernate.QueryException: could not resolve property: type_id of:
org.springframework.samples.petclinic.model.Pet [SELECT DISTINCT owner FROM
org.springframework.samples.petclinic.model.Owner owner left join fetch owner.pets
as pet WHERE pet.type_id LIKE :typeID]
这是来自 Spring petclinic 示例应用程序,因此所有相关代码 is at this link ,包括数据库定义。我使用的是 hsqldb 和 jpa,上面的 findByPetType() 方法是我写的,它不在示例应用程序中。
任何人都可以告诉我如何修复代码以使其不产生此错误消息吗?
编辑:
我听从了 Alex 的建议,将 pet.type_id 更改为 pet.type。现在它给我以下错误消息(typeID 的值设置为 1):
Parameter value [1%] did not match expected type
[org.springframework.samples.petclinic.model.PetType]; nested exception is
java.lang.IllegalArgumentException: Parameter value [1%] did not match expected type
[org.springframework.samples.petclinic.model.PetType]
第二次编辑:
我提出了 Sergi Almar 的建议,现在它抛出以下错误:
Parameter value [1%] did not match expected type [java.lang.Integer]; nested exception
is java.lang.IllegalArgumentException: Parameter value [1%] did not match expected type
[java.lang.Integer]
我检查过,调用代码将 typeID 初始化为“Integer typeID = 1;”所以我不确定为什么在这里看不到整数。
最佳答案
将 pet.type_id
更改为 pet.type
。您必须在 HQL
中使用实体的映射属性(但不是列名)。
关于java - hibernate 查询异常 : could not resolve property in spring petclinic sample application,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18647300/
我刚刚合作https://src.springframework.org/svn/spring-samples/并尝试建立宠物诊所。我做了: mvn 全新安装 mvn eclipse:eclipse
尝试将新的方面类添加到 org.springframework.samples.petclinic 中的方面包中。 我的方面类如下: package org.springframework.sampl
我想要 spring petclinic application 的根目录加载位置: http://localhost:8080/anothername 而不是在: http://localhost
我想在每次应用程序重新启动时关闭 Spring petclinic 的自动重新创建和重新填充其底层 MySQL 数据库。谁能告诉我如何做到这一点? 应用程序的 web.xml can be found
我正在使用 SpringPetClinic 应用程序,并且正在考虑捕获特定请求的 HttpRequest session 的方法。我想为请求捕获唯一的 session ID,以跟踪该请求所做的所有方法
我正在使用 this version of the spring PetClinic sample application 的 master 分支。我将以下方法添加到 OwnerController
我已经从 Git Hub 导入了新的 Spring boot 宠物诊所项目。当我尝试运行该应用程序时。我得到如下所示的初始页面。当我尝试查找所有者信息时,它没有从数据库中取回数据。我有带有宠物诊所模式
我从 https://github.com/spring-projects/spring-petclinic/ 下载了 Spring Petclinic 项目 Eclipse 编译工作正常 - 我可以
我正在实现给出的 Spring Pet Clinic 示例项目 here 实现 here 在主页中,所有 url 都由 编码标签。我只是想确认对链接进行编码是否是一个好的编程实践,即使是简单的导航
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我正在尝试 spring petclinic 应用程序,其完整代码是 at this link 。我想设置 hibernate.max_fetch_depth=0,但是当我重新启动 tomcat 服务
如何在 Eclipse 中创建类似于 Spring Petclinic where 的项目结构 src/main/java src/main/resources src/test/java 都是源文件
我读到this article ,其中指出有一个用 Angular js 编写的 spring petclinic 版本,可以在 github 上找到。我点击了文章中的链接,然后被发送到 github
为了学习 Spring 安全性,我已经向 Spring Petclinic 示例添加了安全性。我注意到 petclinic 应用程序配置为使用相同的用户名和密码将所有用户登录到 MySQL。如何更改
我一直在通过深入剖析 Spring Pet Clinic 示例应用程序并制作大量流程图来研究它。经过这么多操作之后,我决定删除它并重新安装它,这样我就可以用原来的应用程序进行新的实验。因此,我在ecl
我正在尝试下载 java spring petclinic sample application 的新副本,但由于未安装 tomcat7 插件,因此无法从 Windows 7 命令行获取它。因此我采用
文档、论坛等不断引用 Spring petclinic 示例。我在哪里可以获得 spring 3.0.x 的这个? (好像没有捆绑spring-framework-3.0.3.RELEASE-with
我正在使用Spring PetClinic application学习 Spring 和 Hibernate 编程,我正在尝试使用 JPA 返回猫主人的列表。因此,我向 OwnerRepository
我正在研究 Spring MVC 的 PetClinic 示例。 1) 我不确定 Vets class 什么时候叫?在评论中回答,链接到 call it 的类(class)位置. 2) 是 vetLi
我有以下 JPA 方法: @SuppressWarnings("unchecked") public Collection findByPetType(Integer typeID) { Qu
我是一名优秀的程序员,十分优秀!