我有一个带有id,firstName,lastName属性的bean类,具有公共getter和setter,以及updateEmployee方法。
我正在使用以下 JSF 页面来获取数据库表值。
当我单击更新按钮时,会显示成功页面,但数据库中的值没有变化。谁能告诉我为什么vales没有在数据库中得到变化的原因?
提前谢谢。
JSF 页面:
<h:dataTable value="#{tableBean.employeeList}" var="employee" border="1">
<h:column>
<f:facet name="header">First name</f:facet>
<h:inputText value="#{employee.firstName}" />
</h:column>
<h:column>
<f:facet name="header">Last name</f:facet>
<h:inputText value="#{employee.lastName}" />
</h:column>
</h:dataTable>
<h:commandButton value = "update" action="#{employee.updateEmployee}"/>
员工.java:
public String updateEmployee(){
String query = "update employee set firstName = ?,lastName = ? where id = 1";
pstmt = conn.prepareStatement(query);
pstmt.setString(2,this.firstName);
pstmt.setString(3,this.lastName);
pstmt.executeUpdate(); // execute update statement
conn.commit();
committed = true;
return "success.xhtml";
}catch (Exception e) {
e.printStackTrace();
return null;
} finally {
try{
if (!committed) conn.rollback();
pstmt.close();
conn.close();
}catch(Exception e){
e.printStackTrace();
}
}
如果您的后备 Bean 中具有相应的属性,则会自动绑定您的值。
您必须提交数据才能更新 Bean 值。在窗体中添加命令按钮或命令链接,如下所示:
<h:form>
<h:dataTable> ... </h:dataTable>
<h:commandButton value="Submit" action="tableBean.actionMethod">
</h:form>
查询中只有两个参数占位符,但稍后会引用第二个和第三个参数:
pstmt.setString(2,this.firstName);
pstmt.setString(3,this.lastName);