Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.

Join them; it only takes a minute:

Sign up
Join the Stack Overflow community to:
  1. Ask programming questions
  2. Answer and help your peers
  3. Get recognized for your expertise

I have following model class:

@Entity
@Table(name="user_content")
@org.hibernate.annotations.NamedQueries({
        @org.hibernate.annotations.NamedQuery(
                name = "checkThatImagesAreModerated",
                query = "select contentId from UserContent where contentId in(:imageIdList) and moderationStatus!='TRUE'"
        )

})
public class UserContent {
...

and following dao:

Session session = sessionFactory.getCurrentSession();
    Query query = session.getNamedQuery("checkThatImagesAreModerated");
    query.setParameter("imageIdList", imageIds );
    return query.list();

Result of last row execution looks like this:

java.lang.ClassCastException: [Ljava.lang.Long; cannot be cast to java.lang.Long
    at org.hibernate.type.LongType.set(LongType.java:42)
    at org.hibernate.type.NullableType.nullSafeSet(NullableType.java:136)
    at org.hibernate.type.NullableType.nullSafeSet(NullableType.java:116)
    at org.hibernate.param.NamedParameterSpecification.bind(NamedParameterSpecification.java:38)
    at org.hibernate.loader.hql.QueryLoader.bindParameterValues(QueryLoader.java:491)
    at org.hibernate.loader.Loader.prepareQueryStatement(Loader.java:1563)
    at org.hibernate.loader.Loader.doQuery(Loader.java:673)
    at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:236)
    at org.hibernate.loader.Loader.doList(Loader.java:2213)
    at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2104)
    at org.hibernate.loader.Loader.list(Loader.java:2099)
    at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:378)
    at org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:338)
    at org.hibernate.engine.query.HQLQueryPlan.performList(HQLQueryPlan.java:172)
    at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1121)
    at org.hibernate.impl.QueryImpl.list(QueryImpl.java:79)
    at com.terminal.dao.impl.ContentDaoImpl.checkThatImagesAreModerated(ContentDaoImpl.java:105)
    at com.terminal.service.impl.ContentServiceImpl.checkThatImagesAreModerated(ContentServiceImpl.java:187)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
.....

hibernate log:

Hibernate: 


 select
        userconten0_.content_id as col_0_0_ 
    from
        user_content userconten0_ 
    where
        (
            userconten0_.content_id in (
                ?
            )
        ) 
        and userconten0_.moderation_status<>'TRUE'

I don't inderstand where and why hibernate tryes to convert Long[] to Long

P.S.

enter image description here

share|improve this question
    
What is the type of imageIds? – JB Nizet Jan 17 '15 at 18:17
    
Long[] imageIds – gstackoverflow Jan 17 '15 at 18:18
    
It should be a Collection<Long>, AFAIK. And it should be in :imageIdList, not in (:imageIdList) – JB Nizet Jan 17 '15 at 18:23
    
As Chris Fei answered also I should to use setParameterList method – gstackoverflow Jan 17 '15 at 19:51
up vote 3 down vote accepted

Try doing query.setParameterList("imageIdList", imageIds); instead of query.setParameter("imageIdList", imageIds);. When binding parameters for an in clause, you typically need to use that instead. Check out the docs for Query.java

share|improve this answer
    
query.setParameterList("imageIdList", Arrays.asList(imageIds) ); – gstackoverflow Jan 17 '15 at 18:42

Use the query.uniqueResult(), the list method returns a list of results, even if there is only one. Internal mapping might resolve it to an array

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.