JSF Validation Error: Value is not valid错误

问题提出:

平台:Richfaces,Jsf,Spring,Ejb3.0

  • 页面文件:
Html代码  
  1. <h:selectOneListbox size="1"  
  2.   
  3.     value="#{coalDailyBackBean.currentEntity.coalDaily.coalTS}" converter="com.mycompany.CoalTransportStyleConverter">  
  4.   
  5.     <f:selectItems value="#{coalDailyBackBean.allTSs}">  
  6.   
  7.     f:selectItems>  
  8.   
  9. h:selectOneListbox>  

    coalTS是一个CoalTransportStyle的对象

    allTSs是一个CoalTransportStyle的List

 

  •  JSF配置文件faces-config.xml:
Xml代码  
  1. <converter>  
  2.   
  3.     <converter-id>  
  4.   
  5.         com.mycompany.CoalTransportStyleConverter  
  6.   
  7.     converter-id>  
  8.   
  9.     <converter-class>     com.mycompany  
  10.   
  11. .parameter.plantinfo.web.converter.CoalTransportStyleConverter  
  12.   
  13.     converter-class>  
  14.   
  15. converter>  

    CoalTransportStyle.java

Java代码  
  1. @Entity  
  2.   
  3. @Table(name = "T_CoalTransportStyle")  
  4.   
  5. public class CoalTransportStyle implements Serializable {  
  6.   
  7.   
  8.   
  9.     /** 
  10.  
  11.      *  
  12.  
  13.      */  
  14.   
  15.     private static final long serialVersionUID = -5090574246490412429L;  
  16.   
  17.     private Long id;      
  18.   
  19.     private String paraName;  
  20.   
  21.     @Id  
  22.   
  23.     @GeneratedValue(strategy=GenerationType.AUTO)  
  24.   
  25.     public Long getId() {  
  26.   
  27.         return id;  
  28.   
  29.     }  
  30.   
  31.     public void setId(Long id) {  
  32.   
  33.         this.id = id;  
  34.   
  35.     }  
  36.   
  37.     @Column(unique=true,nullable=false)  
  38.   
  39.     public String getParaName() {  
  40.   
  41.         return paraName;  
  42.   
  43.     }  
  44.   
  45.     public void setParaName(String paraName) {  
  46.   
  47.         this.paraName = paraName;  
  48.   
  49.     }  
  50.   
  51. }  
 
Java代码  
  1. public class CoalTransportStyleConverter implements Converter {  
  2.   
  3.     public Object getAsObject(FacesContext arg0, UIComponent arg1, String arg2) {  
  4.   
  5.         CoalTransportStyle style = new CoalTransportStyle();  
  6.   
  7.         String strs[] = arg2.split(":");  
  8.   
  9.         style.setId(new Long(strs[0]));  
  10.   
  11.         style.setParaName(strs[1]);  
  12.   
  13.         return style;  
  14.   
  15.     }  
  16.   
  17.   
  18.   
  19.     public String getAsString(FacesContext arg0, UIComponent arg1, Object arg2) {  
  20.   
  21.         CoalTransportStyle style = (CoalTransportStyle) arg2;  
  22.   
  23.         return style.getId() + ":" + style.getParaName();  
  24.   
  25.     }  
  26.   
  27. }  

 

   定义了一个converter

  • 后台支撑Bean:
    Java代码  
    1. /** 
    2.  
    3.  * 获得所有的运输方式 
    4.  
    5.  *  
    6.  
    7.  * @return the allTSs 
    8.  
    9.  */  
    10.   
    11. public List getAllTSs() {  
    12.   
    13.     allTSs = new ArrayList();  
    14.   
    15.     List list = coalTransportStyleService.queryAll(  
    16.   
    17.             "paraName"true);  
    18.   
    19.     for (CoalTransportStyle style : list) {  
    20.   
    21.         allTSs.add(new SelectItem(style, style.getParaName()));  
    22.   
    23.     }  
    24.   
    25.     return allTSs;  
    26.   
    27. }  
     
    Java代码  
    1. /** 
    2.  
    3.  * @return the currentEntity 
    4.  
    5.  */  
    6.   
    7. public CoalDailyEntity getCurrentEntity() {  
    8.   
    9.     if (getCoalDailyId() != null) {  
    10.   
    11.         currentEntity = new CoalDailyEntity();  
    12.   
    13.         currentEntity.setPlant(plant);  
    14.   
    15.         currentEntity.setT_Date(date);// 设置时间  
    16.   
    17.         currentEntity.setCoalDaily(coal);  
    18.   
    19.     }  
    20.   
    21.     return currentEntity;  
    22.   
    23. }  
     初始页面显示时,h:selectOneListbox显示没有问题,但是当数据提交时,就报了一个错:Validation Error: Value is not valid 上网找了半天也没找到答案,后来自己调试了一下。
  • 当数据提交时,是调用了CoalTransportStyleConverter的getAsObject说明这个对象已经创建起来了。但是为什么还报这个错误呢?
  • 于是我找了Messages_en.properties错误信息文件。
    Java代码  
    1. javax.faces.component.UISelectOne.INVALID={0}: Validation Error: Value is not valid  
  • 又找到UISelectOne的validateValue方法。
    Java代码  
    1. protected void validateValue(FacesContext context, Object value) {  
    2.   
    3.   
    4.   
    5.         // Skip validation if it is not necessary  
    6.   
    7.         super.validateValue(context, value);  
    8.   
    9.   
    10.   
    11.         if (!isValid() || (value == null)) {  
    12.   
    13.             return;  
    14.   
    15.         }  
    16.   
    17.   
    18.   
    19.         // Ensure that the value matches one of the available options  
    20.   
    21.         boolean found = matchValue(value, new SelectItemsIterator(this));  
    22.   
    23.   
    24.   
    25.         // Enqueue an error message if an invalid value was specified  
    26.   
    27.         if (!found) {  
    28.   
    29.             FacesMessage message =  
    30.   
    31.                 MessageFactory.getMessage(context, INVALID_MESSAGE_ID,  
    32.   
    33.                      MessageFactory.getLabel(context, this));  
    34.   
    35.             context.addMessage(getClientId(context), message);  
    36.   
    37.             setValid(false);  
    38.   
    39.         }  
    40.   
    41.     }  
    42.   
    43.   
    44.   
    45.   
    46.   
    47.     // --------------------------------------------------------- Private Methods  
    48.   
    49.   
    50.   
    51.   
    52.   
    53.     /** 
    54.  
    55.      * 

      Return true if the specified value matches one of the 

    56.  
    57.      * available options, performing a recursive search if if a 
    58.  
    59.      * {@link SelectItemGroup} instance is detected.

       
    60.  
    61.      * 
    62.  
    63.      * @param value {@link UIComponent} value to be tested 
    64.  
    65.      * @param items Iterator over the {@link SelectItem}s to be checked 
    66.  
    67.      */  
    68.   
    69.     private boolean matchValue(Object value, Iterator items) {  
    70.   
    71.   
    72.   
    73.         while (items.hasNext()) {  
    74.   
    75.             SelectItem item = (SelectItem) items.next();  
    76.   
    77.             if (item instanceof SelectItemGroup) {  
    78.   
    79.                 SelectItem subitems[] =  
    80.   
    81.                     ((SelectItemGroup) item).getSelectItems();  
    82.   
    83.                 if ((subitems != null) && (subitems.length > 0)) {  
    84.   
    85.                     if (matchValue(value, new ArrayIterator(subitems))) {  
    86.   
    87.                         return (true);  
    88.   
    89.                     }  
    90.   
    91.                 }  
    92.   
    93.             } else {  
    94.   
    95.                 //Coerce the item value type before comparing values.  
    96.   
    97.                 Class type = value.getClass();  
    98.   
    99.                 Object newValue;  
    100.   
    101.                 try {  
    102.   
    103.                     newValue = getFacesContext().getApplication().  
    104.   
    105.                         getExpressionFactory().coerceToType(item.getValue(), type);  
    106.   
    107.                 } catch (ELException ele) {  
    108.   
    109.                     newValue = item.getValue();  
    110.   
    111.                 } catch (IllegalArgumentException iae) {  
    112.   
    113.                     // If coerceToType fails, per the docs it should throw  
    114.   
    115.                     // an ELException, however, GF 9.0 and 9.0u1 will throw  
    116.   
    117.                     // an IllegalArgumentException instead (see GF issue 1527).                      
    118.   
    119.                     newValue = item.getValue();  
    120.   
    121.                 }  
    122.   
    123.                 if (value."color: #ff0000;">equals  
    124. (newValue)) {  
    125.   
    126.                     return (true);  
    127.   
    128.                 }  
    129.   
    130.             }  
    131.   
    132.         }  
    133.   
    134.         return (false);  
    135.   
    136.   
    137.   
    138.     }  
     这里调用了equals方法,结果是不行,所以抛出了这个异常。
  • 重写CoalTransportStype的equals方法即可:
    Java代码  
    1. @Entity  
    2.   
    3. @Table(name = "T_CoalTransportStyle")  
    4.   
    5. public class CoalTransportStyle implements Serializable {  
    6.   
    7.   
    8.   
    9.     /** 
    10.  
    11.      *  
    12.  
    13.      */  
    14.   
    15.     private static final long serialVersionUID = -5090574246490412429L;  
    16.   
    17.     private Long id;      
    18.   
    19.     private String paraName;  
    20.   
    21.     @Id  
    22.   
    23.     @GeneratedValue(strategy=GenerationType.AUTO)  
    24.   
    25.     public Long getId() {  
    26.   
    27.         return id;  
    28.   
    29.     }  
    30.   
    31.     public void setId(Long id) {  
    32.   
    33.         this.id = id;  
    34.   
    35.     }  
    36.   
    37.     @Column(unique=true,nullable=false)  
    38.   
    39.     public String getParaName() {  
    40.   
    41.         return paraName;  
    42.   
    43.     }  
    44.   
    45.     public void setParaName(String paraName) {  
    46.   
    47.         this.paraName = paraName;  
    48.   
    49.     }  
    50.   
    51.       
    52.   
    53.     public boolean equals(Object obj) {  
    54.   
    55.         if (this == obj)  
    56.   
    57.             return true;  
    58.   
    59.         if (obj == null)  
    60.   
    61.             return false;  
    62.   
    63.         if (getClass() != obj.getClass())  
    64.   
    65.             return false;  
    66.   
    67.         final CoalTransportStyle other = (CoalTransportStyle) obj;  
    68.   
    69.         if (id == null) {  
    70.   
    71.             if (other.id != null)  
    72.   
    73.                 return false;  
    74.   
    75.         } else if (!id.equals(other.id))  
    76.   
    77.             return false;  
    78.   
    79.         if (paraName == null) {  
    80.   
    81.             if (other.paraName != null)  
    82.   
    83.                 return false;  
    84.   
    85.         } else if (!paraName.equals(other.paraName))  
    86.   
    87.             return false;  
    88.   
    89.         return true;  
    90.   
    91.     }  
    92.   

你可能感兴趣的:(JSF学习)