gpt4 book ai didi

jsf - 看到Primefaces红色组件中的错误

转载 作者:行者123 更新时间:2023-12-03 07:42:12 25 4
gpt4 key购买 nike

我在tab组件中有一些Primefaces输入组件,它们是从java bean类获取数据的。他们工作完美。问题是一定有问题,因为如果我切换到另一个选项卡然后又回来,则组件会变成红色。虽然它们仍然可以工作,但是这可能与我的应用程序中存在的另一个问题有关。我怎么看这个红色的意思?控制台上没有消息。有没有我收到的消息?

编辑:添加了屏幕截图和代码

我的代码:

XHTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:body>
<ui:composition>
<h:form>
<p:panelGrid columns="2" style="margin-bottom:10px" cellpadding="5">
<h:outputText value="Item: "/>
<p:selectOneMenu value="#{devTestController.items}">
<f:selectItems value="#{devTestController.items}" var="item" itemLabel="#{item.label}" itemValue="#{item.value}"/>
</p:selectOneMenu>
</p:panelGrid>
<p:commandButton value="asdf1" action="#{devTestController.doAction()}"/>
</h:form>
</ui:composition>
</h:body>
</html>

Java Bean:
import java.util.LinkedList;
import java.util.List;
import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;

@ManagedBean
@RequestScoped
public class DevTestController
{
private List<Parameter> items;

@PostConstruct
public void initList()
{
items = new LinkedList<>();
items.add(new Parameter("Item1", "Item1"));
items.add(new Parameter("Item2", "Item2"));
items.add(new Parameter("Item3", "Item3"));
}

public List<Parameter> getItems()
{
return items;
}

public void doAction()
{
System.out.println("asdf");
}

}

最佳答案

我找到了。我不得不将h:messages标记放在某个地方,然后使用按钮对其进行更新。
我现在在XHTML中的表单:

<h:form>
<h:messages id="errorMessages" style="color:red;margin:8px;" />
<br></br>
<p:panelGrid columns="2" style="margin-bottom:10px" cellpadding="5">
<h:outputText value="Item: "/>
<p:selectOneMenu value="#{devTestController.items}">
<f:selectItems value="#{devTestController.items}" var="item" itemLabel="#{item.label}" itemValue="#{item.value}"/>
</p:selectOneMenu>
</p:panelGrid>
<p:commandButton value="asdf1" update = "errorMessages" action="#{devTestController.doAction()}"/>
</h:form>

现在,当我按下按钮时会收到消息:

看来我缺少转换器。

关于jsf - 看到Primefaces红色组件中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18889481/

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