我现在正在工作的项目中有另一个问题,我到处搜索以找到解决方案,但找不到...
我有一个具有 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();
}
}
}
谢谢,拉姆