2014-11-14 93 views
0

我收到类转换异常 作为java.lang.ClassCastException:com.model.Image不能转换为java.lang.String

java.lang.ClassCastException:com.model.Image不能转换为 java.lang.String中

下面是我的功能由一个实体类的JPA

public List<Image> complete(String fileName) 
{ 
    List<Image> queryResult = new ArrayList<Image>(); 
    System.out.println("File Name is : "+fileName); 
    if (allImages == null) 
    { 
     System.out.println("Yeah I am coming here"+allImages);   
     allImages = imageFacade.findAll(); 
    }  
    allImages.removeAll(servicesWithImage.getImage()); 
    for (Image image : allImages) 
    { 
     if (image.getFileName().toLowerCase().contains(fileName.toLowerCase())) 
     { 
      queryResult.add(image); 
     } 
    } 

    return queryResult; 
} 
创建MySQL表获取数据

我已经定义了allImages全局作为

private List<Image> allImages; 

上面完整方法我从Primefaces的p:autoComplete

<p:autoComplete forceSelection="true" 
       minQueryLength="3" 
       value="#{servicesMB.image}" 
       label="#{msgs.image}" 
       required="true" 
       var="image" 
       itemLabel="#{image.fileName}" 
       itemValue="#{image}" 
       completeMethod="#{servicesMB.complete}" 
       dropdown="true" /> 

调用完整方法的的findAll方法如下所示:

public List<T> findAll() 
{ 
    CriteriaQuery cq = em.getCriteriaBuilder().createQuery(); 
    cq.select(cq.from(entityClass)); 
    return em.createQuery(cq).getResultList(); 
} 

如果我把Print Statement写成完整的方法,我得到了所有需要的数据bu t对数据没有在p:autoComplete显示,并且还我收到ClassCastException异常

我将编辑我完成上述方法有哪些东西看起来像

public List<Image> complete(String fileName) 
{ 
    List<Image> queryResult = new ArrayList<Image>(); 
    if (allImages == null) 
    { 
     System.out.println("I am in If Condition"); 
     allImages = imageFacade.findAll(); 
     System.out.println("The Value of allImages : "+allImages); 
    } 
    System.out.println("Getter function servicesWithImage"+servicesWithImage.getImage()); 
    allImages.removeAll(servicesWithImage.getImage()); 
    System.out.println("allImages after removeAll method"+allImages); 

    for (Image image : allImages) 
    { 

     if (image.getFileName().toLowerCase().contains(fileName.toLowerCase())) 
     { 
      queryResult.add(image); 
     } 
    } 
    System.out.println("At the End The Value of queryResult"+queryResult); 
    return queryResult; 
} 

我的输出(仅用于方法)打印报表:

02:58:56,104 INFO [stdout] (http-localhost-127.0.0.1-8080-5) I am in If Condition 
02:58:56,121 INFO [stdout] (http-localhost-127.0.0.1-8080-5) The Value of allImages : [services_2.jpg, services_3.jpg] 
02:58:56,122 INFO [stdout] (http-localhost-127.0.0.1-8080-5) Getter function servicesWithImage[] 
02:58:56,122 INFO [stdout] (http-localhost-127.0.0.1-8080-5) allImages after removeAll method[services_2.jpg, services_3.jpg] 
02:58:56,123 INFO [stdout] (http-localhost-127.0.0.1-8080-5) At the End The Value of queryResult[services_2.jpg, services_3.jpg] 
02:58:56,130 SEVERE [javax.enterprise.resource.webcontainer.jsf.context] (http-localhost-127.0.0.1-8080-5) 
java.lang.ClassCastException: com.model.Image cannot be cast to java.lang.String 

帮助...

回答

1

可能是由于自动完成。

自动完成就像选择,它本身不能管理对象,需要一个转换器,而这个转换器必须能够将图像对象转换为一个字符串,并再次将该字符串转换为图像。

这里你可以看到详细的解释https://stackoverflow.com/a/8001418/4253629]1

+0

花了更多的时间来理解解决方案,但是正确的解决方案非常感谢 – Zaheer 2014-11-15 13:35:38

相关问题