Hibernate 不断检测
org.hibernate.QueryParameterException: could not locate named parameter [name]
即使它存在。这是我的 hql
Query query = sess().createQuery("from UserProfile where firstName LIKE '%:name%'").setParameter("name", name);
为什么hibernate不断抛出该异常?即使参数存在?