- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在验证我的表单,我可以获得文本框的值但总是在
uiClass 变量( Error: java.lang.NullPointerException
):
任何建议?
异常(exception):
WARNING: /jsf/report/Edit.xhtml @39,99 listener="#{studentController.validate}": java.lang.NullPointerException
javax.el.ELException: /jsf/report/Edit.xhtml @39,99 listener="#{studentController.validate}": java.lang.NullPointerException
at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:111)
at com.sun.faces.facelets.tag.jsf.core.DeclarativeSystemEventListener.processEvent(EventHandler.java:131)
at javax.faces.component.UIComponent$ComponentSystemEventListenerAdapter.processEvent(UIComponent.java:2464)
at javax.faces.event.SystemEvent.processListener(SystemEvent.java:106)
at com.sun.faces.application.ApplicationImpl.processListeners(ApplicationImpl.java:2168)
at com.sun.faces.application.ApplicationImpl.invokeComponentListenersFor(ApplicationImpl.java:2116)
at com.sun.faces.application.ApplicationImpl.publishEvent(ApplicationImpl.java:288)
at com.sun.faces.application.ApplicationImpl.publishEvent(ApplicationImpl.java:246)
Caused by: java.lang.NullPointerException
at entities.StudentController.validate(StudentController.java:163)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
@ManagedBean()
@SessionScoped
public class StudentController implements Serializable {
public void validate(ComponentSystemEvent event) {
FacesContext fc = FacesContext.getCurrentInstance();
UIComponent components = event.getComponent();
UIInput uiName = (UIInput) components.findComponent("frmStudent:name");
UIInput uiClass = (UIInput) components.findComponent("frmStudent:myclass");
String name = uiName.getLocalValue().toString();
String myclass = uiClass.getLocalValue().toString();
if (name.equals("") || name == null || name.isEmpty()) {
FacesMessage msgName = new FacesMessage("Please enter name !");
fc.addMessage(components.getClientId(), msgName);
fc.renderResponse();
} else if (myclass.equals("") || myclass == null || myclass.isEmpty()) {
FacesMessage msgClass = new FacesMessage("Please select a class !");
fc.addMessage(components.getClientId(), msgClass);
fc.renderResponse();
}
}
}
<h:message for="textPanel" style="color:red;" />
<h:panelGrid id="textPanel" columns="4">
<f:event listener="#{studentController.validate}" type="postValidate" />
<h:inputText id="name" value="#{studentController.selected.name}" size="20" />
<h:selectOneMenu id="myclass" value="#{studentController.selected.myclass}" style="width:180px;">
<f:selectItem itemLabel="Select ..." itemValue="#{null}" noSelectionOption="true" />
<f:selectItems value="#{studentController.classItems}"/>
</h:selectOneMenu>
</h:panelGrid>
最佳答案
为什么不使用必需的属性?
<h:inputText id="name" required="true" requiredMessage="Please enter name !" value="#{studentController.selected.name}" size="20" />
<h:selectOneMenu id="myclass" required="true" requiredMessage="Please select a class !" value="#{studentController.selected.myclass}" style="width:180px;">
<f:selectItem itemLabel="Select ..." itemValue="#{null}" noSelectionOption="true" />
<f:selectItems value="#{studentController.classItems}"/>
</h:selectOneMenu>
关于jsf-2 - 如何验证 selectOneMenu 的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12967350/
这个问题在这里已经有了答案: Make multiple dependent / cascading selection components in JSF (4 个答案) 关闭 2 年前。 我想在
这个问题在这里已经有了答案: How to load and display dependent h:selectOneMenu on change of a h:selectOneMenu (1
我想要多个 通过选择主要显示的 不工作的例子 //this one
我有一个 selectOneMenu,其中包含两个项目“Granted”和“Dismessed” 我在其下还有两个 selectO
在我的应用程序中,如果设置了另一个 SelectOneMenu,我将尝试设置/更新 SelectOneMenu。我们使用的是primefaces,所以我检查了primefaces 展示并找到了我正在寻
我想创建 JSF 注册表单,其中包含包含所有国家/地区列表的选择菜单。我知道这很容易用 Java 实现 HashMap但我不知道如何实现的棘手部分是,在用户从列表中选择他的国家后,第二个选择菜单与他所
我很长时间以来一直试图找出问题所在,但没有成功的结果。我在 Google 中搜索此内容,并尝试了几个不同的工作示例,但没有一个可以帮助我解决我的任务。 问题是,当“类别”selectOneMenu 更
我有一个带有惰性负载。在其中两列中,有一个 在他们每个人中。 第一列包含国家/地区列表,第二列包含数据库中的州列表。 我希望第二个菜单(包含州列表的菜单)仅显示数据表的每行中与中第一个菜单中的国家/地
好吧,我已经坚持了几天(轻描淡写)。 假设我有一个 selectOneMenu 我想根据所选选项更改另一个 selectOneMenu 上的选项在之前的 se
首先,我想为我发布的长代码道歉,它们非常简单,只是一个重复 17 次的 p:selectOneMenu(这就是为什么它很长)。 我遇到的问题是,如果我在一个表单中有太多 p:selectOneMenu
这是针对 JSF 2.0 的(请注意 - 这是 mojerra 实现,我没有使用 Icefaces、myfaces 等) 假设我的表单中只有一个下拉列表,并且该下拉列表绑定(bind)了一个存储值、标
信息 JSF 2.0 Primefaces 3.4 两个对象都是 People 对象 我有一个简单的下拉菜单,包含在提交表单提交(AJAX 调用)上的选择的表单中: ....
我有以下(不言自明的)实体关系: * Manufacturer * Car (Manufacturer.getCars()) * Tire (Car.getTires()) MyBean p
我正在使用可编辑的素面selectOneMenu显示一些值。如果用户从列表中选择一个项目,则应更新文本区域。但是,如果用户在selectOneMenu中键入内容,则不应更新文本区域。 我以为我可以解决
好吧,我需要对 selectOneMenu 标签进行一些说明,使用 EL 表达式来获取/设置值 我有这段代码,它
一个人只能拥有一辆汽车,但在数据表中我想显示列表中的所有汽车,但选择一个用户所属的人。这样用户就可以即时更新任何人的汽车。 假设我有两个 table 人 id name car_id 汽车 id na
我尝试加载 selectOneMenu 并给出以下异常:java.lang.IllegalStateException:提交响应后无法创建 session 。我有 xhtml:
好吧,我需要对 selectOneMenu 标签进行一些说明,使用 EL 表达式来获取/设置值 我有这段代码,它
Person can only have only one car ,但在数据表中我想显示列表中的所有汽车,但选择一个用户所属的用户。这样用户就可以即时更新任何人的汽车。 假设我有两个表 人物 id
我在 JSF 页面上使用 SelectOneMenu 组件和 SelectBooleanCheckbox 组件。 如果选择了组合框,我的 SelectOneMenu 应被阻止并设置为第一个元素(重置)
我是一名优秀的程序员,十分优秀!