- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个 JSF 页面,用户可以在其中选择两个 selectOneMenu 组件中的值。这些选择中的值随后将传递给 SQL 查询以更新页面上显示的表格。
我已经将每个选择项绑定(bind)到支持 bean 中的适当变量,但是在更改 selectOneMenu 中选择的值之后,支持 bean 中的绑定(bind)属性不会更改,并且执行了查询但没有'不返回任何结果。 (顺便说一句,在页面最初显示时,getter 似乎也被调用了两次)。
我不能使用任何其他第三方组件(例如 RichFaces 等)来实现此实现。
感谢任何对此的见解!
代码如下:
笔记.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title></title>
</head>
<body>
<f:view>
<h:form id="notelistform">
<f:subview id="loginbar">
<jsp:include page="/jsp/loginbar.jsp" />
</f:subview>
<h:outputText value="Worktype:" />
<h:selectOneMenu value="#{pc_noteListBacker.worktype}"
title="worktype" id="worktypeList" onchange="submit()">
<f:selectItems value="#{pc_noteListBacker.selectWorktypes}" />
<f:valueChangeListener
type="<package>.web.backer.note.NoteListBacker" />
</h:selectOneMenu>
<h:outputText value="Product:" />
<h:selectOneMenu value="#{pc_noteListBacker.product}" title="product"
id="productList" onchange="submit()">
<f:selectItems value="#{pc_noteListBacker.selectProducts}" />
<f:valueChangeListener
type="<package>.web.backer.note.NoteListBacker" />
</h:selectOneMenu>
<h:dataTable id="notelisttable" value="#{pc_noteListBacker.noteList}"
var="item" bgcolor="#F1F1F1" border="10" cellpadding="5"
cellspacing="3" first="0" width="80%" dir="LTR" frame="hsides"
rules="all" summary="Status and notes note table display."
binding="#{pc_noteListBacker.noteListTable}">
<h:column>
<f:facet name="header">
<h:outputText value="Note ID" />
</f:facet>
<h:outputText value="#{item.noteId}"></h:outputText>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Note Category" />
</f:facet>
<h:outputText value="#{item.noteCategory}"></h:outputText>
<f:facet name="footer">
<h:commandButton value="Add" action="#{pc_noteListBacker.insert}">
</h:commandButton>
</f:facet>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Note Subcategory" />
</f:facet>
<h:outputText value="#{item.noteSubCategory}"></h:outputText>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Note" />
</f:facet>
<h:outputText value="#{item.note}"></h:outputText>
</h:column>
<h:column>
<h:commandButton value="Edit" action="#{pc_noteListBacker.edit}">
</h:commandButton>
</h:column>
<h:column>
<h:commandButton value="Delete" action="#{pc_noteListBacker.delete}"></h:commandButton>
</h:column>
</h:dataTable>
</h:form>
NoteListBacker.java
package <package>.web.backer.note;
import java.util.List;
import java.util.ArrayList;
import javax.faces.component.UIComponent;
import javax.faces.component.UIComponentBase;
import javax.faces.component.UIData;
import javax.faces.context.FacesContext;
import javax.faces.event.AbortProcessingException;
import javax.faces.event.ValueChangeEvent;
import javax.faces.event.ValueChangeListener;
import javax.faces.model.ListDataModel;
import javax.faces.model.SelectItem;
import javax.swing.JOptionPane;
public class NoteListBacker implements ValueChangeListener {
private UIData noteListTable;
private Note note;
private NoteCategory noteCategory;
private NoteSubCategory noteSubCategory;
private NoteDao nDao;
private SybaseSqlDao sybaseDao;
private List<Note> noteList;
private List<SelectItem> selectWorktypes;
private List<SelectItem> selectProducts;
private String worktype;
private List<String> worktypeList;
private String product;
private List<Product> productList;
private int noteId;
public NoteListBacker() {
nDao = new NoteDao();
sybaseDao = new SybaseSqlDao();
selectWorktypes = new ArrayList<SelectItem>();
selectProducts = new ArrayList<SelectItem>();
noteList = new ArrayList<Note>();
note = new Note();
worktypeList = new ArrayList<String>();
productList = new ArrayList<Product>();
}
public String insert() {
return "success";
}
public String save() {
return "notes";
}
public String edit() {
return "success";
}
public String update() {
return "notes";
}
public String delete() {
Note delNote = (Note) noteListTable.getRowData();
nDao.deleteNote(delNote);
return "notes";
}
public String cancel() {
return "notes";
}
public Note getNote() {
return note;
}
public void setNote(Note note) {
this.note = note;
}
public NoteDao getNDao() {
return nDao;
}
public UIData getNoteListTable() {
return noteListTable;
}
public void setNoteListTable(UIData noteListTable) {
this.noteListTable = noteListTable;
}
public List<Note> getNoteList() {
noteList = nDao.selectNotes(worktype, product); //
return noteList;
}
public void setNoteList(List<Note> noteList) {
this.noteList = noteList;
}
public void setNDao(NoteDao dao) {
nDao = dao;
}
public String getProduct() {
return product;
}
public void setProduct(String product) {
this.product = product;
}
public String getWorktype() {
return worktype;
}
public void setWorktype(String worktype) {
this.worktype = worktype;
}
public NoteCategory getNoteCategory() {
return noteCategory;
}
public void setNoteCategory(NoteCategory noteCategory) {
this.noteCategory = noteCategory;
}
public NoteSubCategory getNoteSubCategory() {
return noteSubCategory;
}
public void setNoteSubCategory(NoteSubCategory noteSubCategory) {
this.noteSubCategory = noteSubCategory;
}
public int getNoteId() {
return noteId;
}
public void setNoteId(int noteId) {
this.noteId = noteId;
}
public SybaseSqlDao getSybaseDao() {
return sybaseDao;
}
public void setSybaseDao(SybaseSqlDao sybaseDao) {
this.sybaseDao = sybaseDao;
}
public List<SelectItem> getSelectWorktypes() {
selectWorktypes.clear();
worktypeList = this.getWorktypeList();
for (String strt : worktypeList) {
SelectItem si = new SelectItem();
si.setValue(strt);
si.setLabel(strt);
si.setDescription(strt);
selectWorktypes.add(si);
}
return selectWorktypes;
}
public void setSelectWorktypes(List<SelectItem> selectWorktypes) {
this.selectWorktypes = selectWorktypes;
}
public List<String> getWorktypeList() {
worktypeList = sybaseDao.selectWorktypes();
return worktypeList;
}
public void setWorktypeList(List<String> worktypeList) {
this.worktypeList = worktypeList;
}
public List<Product> getProductList() {
productList = sybaseDao.selectProducts();
return productList;
}
public void setProductList(List<Product> productList) {
this.productList = productList;
}
public List<SelectItem> getSelectProducts() {
selectProducts.clear();
productList = this.getProductList();
for (Product prod : productList) {
SelectItem si = new SelectItem();
si.setValue(prod);
si.setLabel(prod.toString());
si.setDescription(prod.toString());
selectProducts.add(si);
}
return selectProducts;
}
public void setSelectProducts(List<SelectItem> selectProducts) {
this.selectProducts = selectProducts;
}
public void processValueChange(ValueChangeEvent arg0) {
if (arg0.getComponent().getId().equalsIgnoreCase("productList")) {
this.setProduct(arg0.getNewValue().toString());
}
if (arg0.getComponent().getId().equalsIgnoreCase("worktypeList")) {
this.setWorktype(arg0.getNewValue().toString());
}
}
}
faces-config.xml
<?xml version="1.0"?>
<!DOCTYPE faces-config PUBLIC
"-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
"http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
<faces-config>
<lifecycle>
<phase-listener>
<package>.utils.NoCachePhaseListener
</phase-listener>
</lifecycle>
<managed-bean>
<managed-bean-name>pc_userBacker</managed-bean-name>
<managed-bean-class>
<package>.web.backer.UserBacker
</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
<managed-bean>
<managed-bean-name>pc_noteCategoryListBacker</managed-bean-name>
<managed-bean-class>
<package>.web.backer.note.NoteCategoryListBacker
</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
</managed-bean>
<managed-bean>
<managed-bean-name>
pc_noteSubCategoryListBacker
</managed-bean-name>
<managed-bean-class>
<package>.web.backer.note.NoteSubCategoryListBacker
</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
</managed-bean>
<managed-bean>
<managed-bean-name>pc_noteListBacker</managed-bean-name>
<managed-bean-class>
<package>.web.backer.note.NoteListBacker
</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
<managed-bean>
<managed-bean-name>pc_statusListBacker</managed-bean-name>
<managed-bean-class>
<package>.web.backer.status.StatusListBacker
</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
</managed-bean>
<managed-bean>
<managed-bean-name>pc_statusReasonBacker</managed-bean-name>
<managed-bean-class>
<package>.web.backer.status.StatusReasonBacker
</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
</managed-bean>
<!-- Notes -->
<navigation-rule>
<from-view-id>/jsp/notes/notes.jsp</from-view-id>
<navigation-case>
<from-action>#{pc_noteListBacker.edit}</from-action>
<from-outcome>success</from-outcome>
<to-view-id>/jsp/notes/noteedit.jsp</to-view-id>
</navigation-case>
<navigation-case>
<from-action>#{pc_noteListBacker.insert}</from-action>
<from-outcome>success</from-outcome>
<to-view-id>/jsp/notes/notenew.jsp</to-view-id>
</navigation-case>
</navigation-rule>
<!-- Note Categories -->
<navigation-rule>
<from-view-id>/jsp/notes/notecategories.jsp</from-view-id>
<navigation-case>
<from-action>#{pc_noteCategoryListBacker.edit}</from-action>
<from-outcome>success</from-outcome>
<to-view-id>/jsp/notes/notecategoryedit.jsp</to-view-id>
</navigation-case>
<navigation-case>
<from-action>
#{pc_noteCategoryListBacker.insert}
</from-action>
<from-outcome>success</from-outcome>
<to-view-id>/jsp/notes/notecategorynew.jsp</to-view-id>
</navigation-case>
</navigation-rule>
<!-- Note Subcategories -->
<navigation-rule>
<from-view-id>/jsp/notes/notesubcategories.jsp</from-view-id>
<navigation-case>
<from-action>
#{pc_noteSubCategoryListBacker.edit}
</from-action>
<from-outcome>success</from-outcome>
<to-view-id>/jsp/notes/notesubcategoryedit.jsp</to-view-id>
</navigation-case>
<navigation-case>
<from-action>
#{pc_noteSubCategoryListBacker.insert}
</from-action>
<from-outcome>success</from-outcome>
<to-view-id>/jsp/notes/notesubcategorynew.jsp</to-view-id>
</navigation-case>
</navigation-rule>
<!-- Statuses -->
<navigation-rule>
<from-view-id>/jsp/statuses/statuses.jsp</from-view-id>
<navigation-case>
<from-action>#{pc_statusListBacker.edit}</from-action>
<from-outcome>success</from-outcome>
<to-view-id>/jsp/statuses/statusedit.jsp</to-view-id>
</navigation-case>
<navigation-case>
<from-action>#{pc_statusListBacker.insert}</from-action>
<from-outcome>success</from-outcome>
<to-view-id>/jsp/statuses/statusnew.jsp</to-view-id>
</navigation-case>
</navigation-rule>
<!-- Status Reasons -->
<navigation-rule>
<from-view-id>/jsp/statuses/statusreasons.jsp</from-view-id>
<navigation-case>
<from-action>#{pc_statusReasonBacker.edit}</from-action>
<from-outcome>success</from-outcome>
<to-view-id>/jsp/statuses/statusreasonedit.jsp</to-view-id>
</navigation-case>
<navigation-case>
<from-action>#{pc_statusReasonBacker.insert}</from-action>
<from-outcome>success</from-outcome>
<to-view-id>/jsp/statuses/statusreasonnew.jsp</to-view-id>
</navigation-case>
</navigation-rule>
<!-- static and general actions-->
<!-- what page the action is coming from doesn't matter here -->
<navigation-rule>
<navigation-case>
<from-outcome>login</from-outcome>
<to-view-id>/login.jsp</to-view-id>
</navigation-case>
<navigation-case>
<from-outcome>menu</from-outcome>
<to-view-id>/menu.jsp</to-view-id>
</navigation-case>
<!-- Notes -->
<navigation-case>
<from-outcome>notes</from-outcome>
<to-view-id>/jsp/notes/notes.jsp</to-view-id>
</navigation-case>
<!-- Note Categories -->
<navigation-case>
<from-outcome>notecategories</from-outcome>
<to-view-id>/jsp/notes/notecategories.jsp</to-view-id>
</navigation-case>
<!-- Note Subcategories -->
<navigation-case>
<from-outcome>notesubcategories</from-outcome>
<to-view-id>/jsp/notes/notesubcategories.jsp</to-view-id>
</navigation-case>
<!-- Statuses -->
<navigation-case>
<from-outcome>statuses</from-outcome>
<to-view-id>/jsp/statuses/statuses.jsp</to-view-id>
</navigation-case>
<!-- Status Reasons -->
<navigation-case>
<from-outcome>statusreasons</from-outcome>
<to-view-id>/jsp/statuses/statusreasons.jsp</to-view-id>
</navigation-case>
</navigation-rule>
</faces-config>
最佳答案
我只看了一眼代码,但我猜这部分问题可能出在这里:
public void processValueChange(ValueChangeEvent arg0) {
if (arg0.getComponent().getId().equalsIgnoreCase("productList")) {
this.setProduct(arg0.getNewValue().toString());
}
if (arg0.getComponent().getId().equalsIgnoreCase("worktypeList")) {
this.setWorktype(arg0.getNewValue().toString());
}
}
如果您阅读 valueChangeListener 的文档type
属性,它是这样说的:
Fully qualified Java class name of a ValueChangeListener to be created and registered.
这意味着您将至少拥有三个 <package>.web.backer.note.NoteListBacker
实例- 两个创建为监听器,第三个创建为托管 bean。最后一个是表绑定(bind)的唯一一个,监听器中的任何状态更改都是无关紧要的。
修复:
NoteListBacker
实现 ValueChangeListener
;没有意义。valueChangeListener
属性为 #{pc_noteListBacker.valueChange}
方法(有关详细信息,请参阅文档)或有一个单独的 ValueChangeListener
查找 pc_noteListBacker
的实现直接从 session 使用 FacesContext
.关于java - 基于 selectOneMenu 值更新 JSF 数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1590484/
我试图了解 JSF 实现如何识别用户的各种可能操作。在我放在一起的简单应用程序中,我在 login.xhtml 页面中配置了以下字段。 用户名 - 输入字段 密码 - 密码字段 登录按钮 取消按钮 登
我已经开始学习 JSF,我想知道在我们的类路径中包含什么 JAR 以开始使用 JSF。是jsf-api或 jsf-impl ?或者我们必须同时包含两者?如果两者都是,那么为什么它们不合并? 最佳答案
我是 java server faces (JSF) 的初学者,我需要将文本输入的内容传递到第二页以显示它,同样适用于第二页:我想将单选按钮值传递到第三页。我搜索并尝试了很多但没有成功。例如我试过
我有一个 JSF 页面。我的 CommandButton 操作方法值取决于 bean 变量值。 例子: Bean headerBean 具有可变的 actionValue,值为“someBean.do
我有两个 JSF 页面,假设 A 和 B。从这两个页面 A 和 BI 可以导航到页面 C。现在页面 C 中有一个按钮(确定按钮),单击它应该导航回 A 或 B,具体取决于从哪里(A 或 B)调用 C
我可以在没有 JSTL 标签的情况下使用 JSF 执行条件逻辑吗? 例如,我制作了一个复合组件,并想说明,如果指定了“id”属性,则定义“id”属性,但如果未指定“id”属性,则不要指定“id”属性。
我有一个应用程序,用户可以在其中从我的应用程序的欢迎页面动态切换语言环境。我看到早期的开发人员(在没有太多文档的情况下继承了代码)已经从 ViewHandler 覆盖了以下三个方法,并告诉我这是动态切
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
有没有一种方法可以在我的 JSF 2.0 应用程序中处理浏览器刷新事件,以便在浏览器刷新页面时将用户导航到欢迎页面? 这让我想到了另一个问题,即如何在托管 bean 中进行页面导航? 干杯, 最佳答案
我有两页。搜索页面是第一个接受用户输入的页面。第二页显示数据表中的结果集。第二页有 3 个面板,用于结果集、更新和在单个页面中创建。根据单击的按钮,我将面板呈现为真和假。 . . . . . .
由于我们在 Asp.Net 中有 comparevalidator,我们在 JSF 中有什么来验证两个字段的值是否相同?我想验证密码和确认密码字段。 最佳答案 不,这样的验证器在基本的 JSF 实现中
我想构建一个自定义 JSF 组件。现在我从 oracle 阅读了一些文档并看到了一些代码示例。问题是我有点困惑: 似乎有两种方法可以使用 JSF 2.0+ 构建自定义组件。据我了解,自 JSF 2.0
我遇到了与 user1598186 在他的问题中提到的相同的问题:p:commandButton doesn't call bean's method in an page 但是,没有给出解决方案(
这个问题在这里已经有了答案: Ajax update/render does not work on a component which has rendered attribute (1 个回答)
是否有内置机制可以有条件地重定向到另一个 View ?如果他/她已经登录,我希望用户从登录页面重定向到“主页”。 我已经有两种基本方法,但对于第一种我不知道如何实现,第二种是一种肮脏的解决方法。 添加
如何在 JSF 中格式化值 我需要格式化一个数字,如:12345.67 到 12,345.67 可以用模式吗? 最佳答案 尝试使用: 关于jsf - 用逗号格式化为数字 JSF,我们在Sta
根据this blog JSF 正在走向无状态。使用 JSF 的全部意义不在于它使保存和恢复状态成为一件苦差事。 JSF 成为无状态的有什么意义?您能否提供一个有用的示例。 最佳答案 首先,我想澄清
我读到某个地方(不再找到它),可以在资源包中使用EL Expresions,然后在不更改* .xhtml文件的情况下使用它。 some.text=#{someBean.stepsLeft} more
我想看一个简单的登录应用程序,不像this那么简单尽管。 我想要实现的是对 JSF 的工作原理的理解,我开发了很多 ASP.NET,您可以在其中隐藏代码,并且您可以在其中检查是否在登录时创建了 ses
如果#{myBean.birthdate}是java.util.Calendar或java.util.Date类型,我可以格式化吗this 在 EL 本身内部可能使用现有函数,其输出类似于 DateF
我是一名优秀的程序员,十分优秀!