gpt4 book ai didi

验证错误 : Value is not valid

转载 作者:行者123 更新时间:2023-11-28 23:39:03 26 4
gpt4 key购买 nike

我对 p:selectOneMenu 有问题,无论我做什么我都无法让 JSF 调用 JPA 实体上的 setter 。 JSF 验证失败并显示此消息:

form:location: Validation Error: Value is not valid

我在其他几个相同类型的类(即连接表类)上工作,但我这辈子都无法让这个工作。

如果有人可以针对此类问题提供一些故障排除/调试提示,我们将不胜感激。

我使用日志语句验证了以下内容:

  1. Conveter 返回正确的非 null 值。
  2. 我的 JPA 实体中没有 Bean 验证。
  3. 永远不会调用 setter setLocation(Location location)

这是我能做的最简单的例子,但它根本行不通:

<h:body>
<h:form id="form">
<p:messages id="messages" autoUpdate="true" />
<p:selectOneMenu id="location" value="#{locationStockList.selected.location}" converter="locationConverter">
<p:ajax event="change" update=":form:lblLocation"/>
<f:selectItems value="#{locationStockList.locationSelection}"/>
</p:selectOneMenu>
</h:form>
</h:body>

转换器:

@FacesConverter(forClass=Location.class, value="locationConverter")
public class LocationConverter implements Converter, Serializable {
private static final Logger logger = Logger.getLogger(LocationConverter.class.getName());

@Override
public Object getAsObject(FacesContext context, UIComponent component, String value) {
if (value.isEmpty())
return null;
try {
Long id = Long.parseLong(value);
Location location = ((LocationManagedBean) context.getApplication().getELResolver().getValue(context.getELContext(), null, "location")).find(id);
logger.log(Level.SEVERE, "Converted {0} to {1}" , new Object[] {value, location});
return location;
} catch (NumberFormatException e) {
return new Location();
}
}

@Override
public String getAsString(FacesContext context, UIComponent component, Object value) {
if (value == null || value.toString().isEmpty() || !(value instanceof Location))
return "";
return String.valueOf(((Location) value).getId());
}
}

控制台输出:

// Getter method
INFO: Current value=ejb.locations.Location[id=null, name=null, latitude=0.0, longitude=0.0]
// Session Bean
INFO: Finding ejb.locations.Location with id=3
// Session Bean
INFO: ### Returning : ejb.locations.Location[id=3, name=mdmd, latitude=4.5, longitude=2.3]
// Converter
SEVERE: Converted 3 to ejb.locations.Location[id=3, name=mdmd, latitude=4.5, longitude=2.3]
// Getter method -> Where did my selected Location go ??
INFO: Current value=ejb.locations.Location[id=null, name=null, latitude=0.0, longitude=0.0]

最佳答案

Validation fails with the message "form:location: Validation Error: Value is not valid"

此错误归结为所选项目与任何嵌套 <f:selectItem(s)> 指定的任何可用选择项目值都不匹配在处理表单提交请求期间标记。

作为防止篡改/黑客攻击请求的一部分,JSF 将重复所有可用的选择项值并测试是否 selectedItem.equals(availableItem)返回 true至少一个可用的项目值。如果没有一个项目值匹配,那么您将得到这个验证错误。

这个过程基本上是隐藏在下面的,由此bean.getAvailableItems()虚构地表示由 <f:selectItem(s)> 定义的可用选择项的整个列表:

String submittedValue = request.getParameter(component.getClientId());
Converter converter = component.getConverter();
Object selectedItem = (converter != null) ? converter.getAsObject(context, component, submittedValue) : submittedValue;

boolean valid = false;

for (Object availableItem : bean.getAvailableItems()) {
if (selectedItem.equals(availableItem)) {
valid = true;
break;
}
}

if (!valid) {
throw new ValidatorException("Validation Error: Value is not valid");
}

所以,根据以上逻辑,这个问题从逻辑上至少可以有以下原因:

  1. 所选项目在可用项目列表中丢失。
  2. equals()表示所选项目的类的方法丢失或损坏。
  3. 如果自定义Converter被涉及,那么它在 getAsObject() 中返回了错误的对象.甚至可能是 null .

解决方法:

  1. 确保在后续请求期间保留完全相同的列表,尤其是在多个级联菜单的情况下。制作 bean @ViewScoped而不是 @RequestScoped在大多数情况下应该修复它。还要确保您没有在 <f:selectItem(s)> 的 getter 方法中执行业务逻辑。 , 而不是 @PostConstruct或 Action 事件(监听器)方法。如果您依赖于特定的请求参数,那么您需要将它们显式存储在 @ViewScoped 中bean,或者通过例如通过后续请求重新传递它们<f:param> .另见 How to choose the right bean scope?
  2. 确保 equals()方法正确实现。这已经在标准 Java 类型上正确完成,例如 java.lang.String , java.lang.Number等,但不一定在自定义对象/bean/实体上。另见 Right way to implement equals contract .如果您已经在使用 String , 请确保请求字符编码配置正确。如果它包含特殊字符并且 JSF 配置为将输出呈现为 UTF-8 但将输入解释为例如ISO-8859-1,那么它将失败。另见 a.o. Unicode input retrieved via PrimeFaces input components become corrupted .
  3. 调试/记录您自定义的操作 Converter并相应地修复它。有关指南,另请参阅 Conversion Error setting value for 'null Converter'如果您使用 java.util.Date作为可用项目 <f:convertDateTime> , 请确保您不要忘记模式中的全时部分。另见 "Validation Error: Value is not valid" error from f:datetimeConverter .

另见:


If anyone can throw some troubleshooting/debugging tips for this sort of problem it would be greatly appreciated.

在这里问一个明确而具体的问题。不要问太宽泛的问题;)

关于验证错误 : Value is not valid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21763693/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com